only show text on draw, add help buttons
This commit is contained in:
parent
90fe5cd481
commit
8d4a3907e4
|
@ -10,6 +10,7 @@
|
|||
<a href="{% url 'pages:view' 'team_faq' %}">Häufig gestellte Fragen zu Teamschichten</a>
|
||||
|
||||
{% if shifts %}
|
||||
{% if is_draw %}
|
||||
<pre class="select_all">
|
||||
Hallo {{ team_member.name }} , hier deine Teamschichten fuer das Festival:
|
||||
|
||||
|
@ -23,8 +24,6 @@ Wenn du eine deiner Schichten machst, komm bitte 15 Minuten vorher kurz an den I
|
|||
Danke für deine Hilfe
|
||||
Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift gültig
|
||||
</pre>
|
||||
|
||||
{% if is_draw %}
|
||||
{% endif %}
|
||||
<table class="table">
|
||||
<thead>
|
||||
|
@ -34,6 +33,7 @@ Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift
|
|||
<th>Wo</th>
|
||||
<th>Helfer*innen</th>
|
||||
<th>Team-Mitglieder</th>
|
||||
<th>Helfer:innen Link</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -48,6 +48,9 @@ Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift
|
|||
{{ assignment.team_member.name }}{% if not forloop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
<td>
|
||||
<a class="button is-primary is-small mr-0" href="{% url 'shift' shift.id %}">Mithelfen</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue