{% extends 'scipost/base.html' %}
{% block pagetitle %}: Theses{% endblock pagetitle %}
{% block headsup %}
{% endblock headsup %}
{% block bodysup %}
{% if user.is_authenticated %}
{% if thesislink_search_list %}
Search results:
{% for thesislink in thesislink_search_list %}
{{ thesislink.header_as_li|safe }}
{% endfor %}
{% elif form.has_changed %}
No match found for your search query.
{% endif %}
{% if thesislink_recent_list %}
Recently active Thesis Links:
{% for thesislink in thesislink_recent_list %}
{{ thesislink.header_as_li|safe }}
{% endfor %}
{% endif %}
{% if thesislink_browse_list %}
Thesis Links in {{ discipline }} in the last {{ nrweeksback }} weeks:
{% for thesislink in thesislink_browse_list %}
{{ thesislink.header_as_li|safe }}
{% endfor %}
{% endif %}
{% endif %}
{% endblock bodysup %}