feat(people): Add discipline and themes to Person

See #1
This commit is contained in:
James Graham
2020-02-25 11:19:46 +00:00
parent d733b6db63
commit 39127cf972
5 changed files with 103 additions and 4 deletions

View File

@@ -47,6 +47,20 @@
<dt>Role</dt>
<dd>{{ person.role }}</dd>
{% endif %}
{% if person.dispipline %}
<dt>Discipline</dt>
<dd>{{ person.discipline }}</dd>
{% endif %}
{% if person.themes.exists %}
<dt>Project Themes</dt>
<dd>
{% for theme in person.themes.all %}
{{ theme }}{% if not forloop.last %}, {% endif %}
{% endfor %}
</dd>
{% endif %}
</dl>
<a class="btn btn-success"