SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 55e9179d authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Add fellows to issue detail page

parent 9ccfd3d0
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<li> <li>
<a href="{{issue.get_absolute_url}}">{{issue}}</a> <a href="{{issue.get_absolute_url}}">{{issue}}</a>
{% if issue.proceedings %} {% if issue.proceedings %}
<div class="pl-4 mb-1">Submission deadline: {{ issue.proceedings.submissions_deadline }}</div> {% include 'partials/proceedings/proceedings_li.html' with proceedings=issue.proceedings %}
{% endif %} {% endif %}
</li> </li>
{% empty %} {% empty %}
......
...@@ -9,3 +9,12 @@ ...@@ -9,3 +9,12 @@
{% endif %} {% endif %}
</div> </div>
<p>{{ proceedings.event_description|linebreaksbr }}</p> <p>{{ proceedings.event_description|linebreaksbr }}</p>
{% if proceedings.fellowships.guests.exists %}
<h3>Guest Fellows</h3>
<ul>
{% for fellow in proceedings.fellowships.guests %}
<li>{{ fellow.contributor.get_title_display }} {{ fellow.contributor.user.first_name }} {{ fellow.contributor.user.last_name }}{% if fellow.contributor.affiliation %}, {{ fellow.contributor.affiliation }}{% endif %}</li>
{% endfor %}
</ul>
{% endif %}
<div class="pl-4 mb-1">
{{ proceedings.event_name }} {% if proceedings.event_suffix %}({{ proceedings.event_suffix }}){% endif %}<br>
Submission deadline: {{ proceedings.submissions_deadline }}
</div>
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