Diverse fiksing på utseendet på filer (#12). Og vær så snill: ikke sett 'Worblehat 0.1:' i title-blokka i html-filene, det skal i main. Hvis ikke blir det et lite helvete når vi rykker opp til 0.2.

This commit is contained in:
2011-03-06 19:42:07 +00:00
parent 3d16a43961
commit 1e9585c23c
6 changed files with 48 additions and 31 deletions

View File

@@ -13,12 +13,20 @@ Du søkte på <b>{{ search_string }}</b>.<br/><br/>
{% for person in people %}
<a href="/person/{{ person.id }}/">{{ person.first_name }} {{ person.last_name }}</a><br>
{% endfor %}
{% endif %}
<br/>
{% endif %}
{% if books %}
<span class="key">Bøker:</span><br/>
{% for book in books %}
<a href="/bok/{{ book.isbn }}/">{{ book.title }}</a><br>
{% endfor %}
<br/>
{% endif %}
{% if categories %}
<span class="key">Kategorier:</span><br/>
{% for category in categories %}
<a href="/kategori/{{ category.id }}/">{{ category.name }}</a><br>
{% endfor %}
<br/>
{% endif %}
{% endblock %}