fixes
[wolnelektury.git] / src / social / templates / social / my_shelf.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5 {% block titleextra %}{% trans "My shelf" %}{% endblock %}
6
7 {% block logout %}/{% endblock %}
8
9 {% block body %}
10   <h1>{% trans "My shelf" %}</h1>
11
12   {% work_list books %}
13
14   {% if not books %}
15     {% trans "Add works to your shelf by clicking on the star on the page of the work. The work will then show up on My shelf page." %}
16   {% endif %}
17 {% endblock %}