Skip to content

publications: Change list field order #118

Merged
merged 1 commit into from
Aug 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions mpicms/templates/publications/components/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ <h3 class="title is-3 has-text-centered">{% trans 'Publications' %}</h3>
<tbody>
{% for publication in publications %}
<tr><td>
{{ publication.authors|richtext }}
{% if publication.doi %}
<a href="{{ publication.link }}"><b>{{ publication.title|richtext }}</b></a>
{% else %}
<b>{{ publication.title|richtext }}</b>
{% endif %}

{{ publication.groups|richtext }}
{{ publication.authors|richtext }}
{{ publication.source|richtext }}
{{ publication.groups|richtext }}
</td></tr>
{% endfor %}
</tbody>
Expand All @@ -24,4 +23,4 @@ <h3 class="title is-3 has-text-centered">{% trans 'Publications' %}</h3>
<div class="section-button" >
<a href="https://www.molgen.mpg.de/publikationen"><button class="button">{% trans 'More in PuRe' %}&nbsp&nbsp<i class="fas fa-chevron-right"></i></button></a>
</div>
{% endif %}
{% endif %}