diff options
Diffstat (limited to 'pytask/templates/task/browse_textbooks.html')
-rw-r--r-- | pytask/templates/task/browse_textbooks.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pytask/templates/task/browse_textbooks.html b/pytask/templates/task/browse_textbooks.html index 3d2edd0..0542a8e 100644 --- a/pytask/templates/task/browse_textbooks.html +++ b/pytask/templates/task/browse_textbooks.html @@ -10,8 +10,8 @@ {% endif %} {% if open_textbooks %} - textbooks that are open for contribution<ul> - {% for textbook in comp_textbooks %} + Textbooks that are open for contribution<ul> + {% for textbook in open_textbooks %} <li><a href="/task/textbook/view/tid={{ textbook.uniq_key }}">{{ textbook.name }}</a></li> {% endfor %} </ul> @@ -19,7 +19,7 @@ {% endif %} {% if unpub_textbooks %} - Textbooks that have been created but need approval<ul> + Textbooks that need approval<ul> {% for textbook in unpub_textbooks %} <li><a href="/task/textbook/view/tid={{ textbook.uniq_key }}">{{ textbook.name }}</a></li> {% endfor %} |