summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pytask/templates/task/view_textbook.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/pytask/templates/task/view_textbook.html b/pytask/templates/task/view_textbook.html
index 0680865..1110c83 100644
--- a/pytask/templates/task/view_textbook.html
+++ b/pytask/templates/task/view_textbook.html
@@ -41,7 +41,14 @@
<table>
{% for chap in chapters %}
<tr>
- <td><a href="{% url view_chapter chap.parent.id chap.id %}">{{chap.title}}</a> </td>
+ <td>
+ <a href="{% url view_chapter chap.parent.id chap.id %}">
+ {{ chap.title }}
+ </a>
+ </td>
+ <td>
+ (<strong>{{ chap.pynts }} Pynt{% if chap.pynts != 1 %}s{% endif %}</strong>)
+ </td>
</tr>
{% endfor %}
</table>