Skip to content
Snippets Groups Projects

Resolve "Add export functionality to course book"

Merged permcu requested to merge 258-add-export-functionality-to-course-book into master
Compare and Show latest version
2 files
+ 39
37
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -92,7 +92,7 @@
</thead>
<tbody>
{% for participation in person.participations %}
{% for participation in person.notable_participations %}
<tr>
<td>{{ participation.documentation.datetime_start.date }}</td>
<td>
@@ -120,18 +120,16 @@
<tbody>
{% for note in person.new_personal_notes %}
{% if note.note or note.extra_marks.all %}
<tr>
<td>{{ note.documentation.datetime_start.date }}</td>
<td>
{{ note.documentation.subject.short_name }}
</td>
<!-- TODO: Should probably use short_names -->
<td>{{ note.documentation.teachers.all|join:', ' }}</td>
<td>{{ note.extra_mark.short_name }}</td>
<td>{{ note.note }}</td>
</tr>
{% endif %}
<tr>
<td>{{ note.documentation.datetime_start.date }}</td>
<td>
{{ note.documentation.subject.short_name }}
</td>
<!-- TODO: Should probably use short_names -->
<td>{{ note.documentation.teachers.all|join:', ' }}</td>
<td>{{ note.extra_mark.short_name }}</td>
<td>{{ note.note }}</td>
</tr>
{% endfor %}
</tbody>
</table>
Loading