Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0

Endret på søkesida, for å gjøre utseendet litt likere resten, i henhold til #12.

This commit is contained in:
Tiril Anette Langfeldt Rødland 2011-03-06 18:35:59 +00:00
parent 80d40f470b
commit 3c09663da2
1 changed files with 7 additions and 4 deletions

View File

@ -1,19 +1,22 @@
{% extends "base/main.html" %} {% extends "base/main.html" %}
{% block title %} {% block title %}
Worblehat 0.1: Søk! Søk
{% endblock %} {% endblock %}
{% block content %} {% block content %}
Du søkte på {{ search_string }}.<br> <h2>Søk</h2>
Du søkte på {{ search_string }}.<br/>
Fant du ikke det du lette etter? <a href="/">Søk på nytt.</a><br/><br/>
{% if people %} {% if people %}
Personer:<br> <span class="key">Personer:</span><br/>
{% for person in people %} {% for person in people %}
<a href="/person/{{ person.id }}/">{{ person.first_name }} {{ person.last_name }}</a><br> <a href="/person/{{ person.id }}/">{{ person.first_name }} {{ person.last_name }}</a><br>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
<br/>
{% if books %} {% if books %}
Bøker:<br> <span class="key">Bøker:</span><br/>
{% for book in books %} {% for book in books %}
<a href="/bok/{{ book.isbn }}/">{{ book.title }}</a><br> <a href="/bok/{{ book.isbn }}/">{{ book.title }}</a><br>
{% endfor %} {% endfor %}