This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
2011-03-06 17:57:12 +01:00
|
|
|
{% extends "base/main.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
2011-03-06 19:35:59 +01:00
|
|
|
Søk
|
2011-03-06 17:57:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2011-03-06 19:35:59 +01:00
|
|
|
<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/>
|
2011-03-06 17:57:12 +01:00
|
|
|
{% if people %}
|
2011-03-06 19:35:59 +01:00
|
|
|
<span class="key">Personer:</span><br/>
|
2011-03-06 17:57:12 +01:00
|
|
|
{% for person in people %}
|
|
|
|
<a href="/person/{{ person.id }}/">{{ person.first_name }} {{ person.last_name }}</a><br>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2011-03-06 19:35:59 +01:00
|
|
|
<br/>
|
2011-03-06 17:57:12 +01:00
|
|
|
{% if books %}
|
2011-03-06 19:35:59 +01:00
|
|
|
<span class="key">Bøker:</span><br/>
|
2011-03-06 17:57:12 +01:00
|
|
|
{% for book in books %}
|
|
|
|
<a href="/bok/{{ book.isbn }}/">{{ book.title }}</a><br>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|