Skip to content
Snippets Groups Projects
Verified Commit 54589cf5 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Show common abbreviations in full register printout

parent 07754a7d
No related branches found
No related tags found
1 merge request!64Resolve "Add support for multiple excuse types"
...@@ -64,6 +64,40 @@ ...@@ -64,6 +64,40 @@
<div class="page-break">&nbsp;</div> <div class="page-break">&nbsp;</div>
<h4>{% trans "Abbreviations" %}</h4>
<h5>{% trans "General" %}</h5>
<ul class="collection">
<li class="collection-item">
<strong>(a)</strong> {% trans "Absent" %}
</li>
<li class="collection-item">
<strong>(b)</strong> {% trans "Late" %}
</li>
<li class="collection-item">
<strong>(u)</strong> {% trans "Unexcused" %}
</li>
<li class="collection-item">
<strong>(e)</strong> {% trans "Excused" %}
</li>
</ul>
{% if excuse_types %}
<h5>{% trans "Custom excuse types" %}</h5>
<ul class="collection">
{% for excuse_type in excuse_types %}
<li class="collection-item">
<strong>({{ excuse_type.short_name }})</strong> {{ excuse_type.name }}
</li>
{% endfor %}
</ul>
{% endif %}
<div class="page-break">&nbsp;</div>
<h4>{% trans 'Persons in group' %} {{ group.name }}</h4> <h4>{% trans 'Persons in group' %} {{ group.name }}</h4>
<table id="persons"> <table id="persons">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment