aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/release_view_contribs.html
blob: 55cdf133578c248e1cdf03a2f5f1aa421a9f2671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% set release = entity %}
{% set entity_view = "contribs" %}
{% set entity_type = "release" %}
{% import "entity_macros.html" as entity_macros %}
{% extends "entity_base.html" %}

{% block entity_main %}

{% if release.contribs|length > 0 %}
<table class="ui basic compact table">
<tbody>
{% for contrib in release.contribs %}
  <tr><td class="collapsing">{% if contrib.index or contrib.index == 0 %} {{ contrib.index + 1 }}{% endif %}
      <td><span itemprop="author">
      {% if contrib.creator_id %}
        <a href="/creator/{{contrib.creator_id}}">{{ contrib.raw_name or 'unknown' }}</a> 
      {% else %}
        {{ contrib.raw_name or '' }}
      {% endif %}
      {% if contrib.surname %}
        <code>&nbsp;
          ({{ contrib.surname }}{% if contrib.given_name %}, {{ contrib.given_name }}{% endif %})
        </code>
      {% endif %}
      </span><br><i>{{ contrib.role or 'unknown' }}</i>
{% endfor %}
</tbody>
</table>
{% else %}
<p>No known contributors (authors, translators, etc).
{% endif %}

{% endblock %}