blob: 23f081d8149ca65e353ff84bf3f3160b0e334c9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% extends 'base.html' %}
{% block content %}
{% if comp_textbooks %}
Textbooks that were completed recently<ul>
{% for textbook in comp_textbooks %}
<li><a href="{% url view_textbook textbook.id %}">{{ textbook.name }}</a></li>
{% endfor %}
</ul>
<br />
{% endif %}
{% if open_textbooks %}
Textbooks that are open for contribution<ul>
{% for textbook in open_textbooks %}
<li><a href="{% url view_textbook textbook.id %}">{{ textbook.name }}</a></li>
{% endfor %}
</ul>
<br />
{% endif %}
{% if unpub_textbooks %}
Textbooks that need approval<ul>
{% for textbook in unpub_textbooks %}
<li><a href="{% url view_textbook textbook.id %}">{{ textbook.name }}</a></li>
{% endfor %}
</ul>
<br />
{% endif %}
{% endblock %}
|