Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0
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.
worblehat-old/python/web/templates/search/search.html

22 lines
491 B
HTML
Raw Normal View History

{% extends "base/main.html" %}
{% block title %}
Worblehat 0.1: Søk!
{% endblock %}
{% block content %}
Du søkte på {{ search_string }}.<br>
{% if people %}
Personer:<br>
{% for person in people %}
<a href="/person/{{ person.id }}/">{{ person.first_name }} {{ person.last_name }}</a><br>
{% endfor %}
{% endif %}
{% if books %}
Bøker:<br>
{% for book in books %}
<a href="/bok/{{ book.isbn }}/">{{ book.title }}</a><br>
{% endfor %}
{% endif %}
{% endblock %}