lib.itmens/catalog/templates/_sidebar_search.html

38 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2023-06-09 02:45:27 -04:00
{% load static %}
{% load i18n %}
{% load l10n %}
<article>
2024-05-19 16:32:59 -04:00
<div>{% trans 'Not the result you are looking for?' %}</div>
2023-06-09 02:45:27 -04:00
<p>
2024-05-19 16:32:59 -04:00
Paste the link into the search box if you have found the entry you are looking for on these sites:
2023-06-09 02:45:27 -04:00
{% for site in sites %}
{{ site }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
</p>
2024-05-19 16:32:59 -04:00
<p>{% trans "Or you may create items manually" %}:</p>
2023-06-09 02:45:27 -04:00
<ul>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Edition' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add books' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Movie' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add movies' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'TVShow' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add tv series' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Podcast' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add podcasts' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Album' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add albums' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Game' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add games' %}</a>
2023-06-09 02:45:27 -04:00
</li>
<li>
2024-05-19 16:32:59 -04:00
<a href="{% url 'catalog:create' 'Performance' %}?title={{ request.GET.q | default:'' }}">{% trans 'Add performance or theater pieces' %}</a>
2023-06-09 02:45:27 -04:00
</li>
</ul>
</article>