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>
|
<a href="{% url 'pages:view' 'team_faq' %}">Häufig gestellte Fragen zu Teamschichten</a>
|
||||||
|
|
||||||
{% if shifts %}
|
{% if shifts %}
|
||||||
|
{% if is_draw %}
|
||||||
<pre class="select_all">
|
<pre class="select_all">
|
||||||
Hallo {{ team_member.name }} , hier deine Teamschichten fuer das Festival:
|
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
|
Danke für deine Hilfe
|
||||||
Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift gültig
|
Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift gültig
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
{% if is_draw %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -34,6 +33,7 @@ Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift
|
||||||
<th>Wo</th>
|
<th>Wo</th>
|
||||||
<th>Helfer*innen</th>
|
<th>Helfer*innen</th>
|
||||||
<th>Team-Mitglieder</th>
|
<th>Team-Mitglieder</th>
|
||||||
|
<th>Helfer:innen Link</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -48,6 +48,9 @@ Diese Schichtzuteilung wurde maschinell erstellt und ist auch ohne Unterschrift
|
||||||
{{ assignment.team_member.name }}{% if not forloop.last %}, {% endif %}
|
{{ assignment.team_member.name }}{% if not forloop.last %}, {% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<a class="button is-primary is-small mr-0" href="{% url 'shift' shift.id %}">Mithelfen</a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue