Skip to content

Commit

Permalink
fixup! Make a basic workshop checkin form
Browse files Browse the repository at this point in the history
  • Loading branch information
SamLR committed May 28, 2024
1 parent 0fed56a commit 83c3563
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions templates/schedule/workshop-steward.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
{% block title %}Workshop Steward{% endblock %}
{% block body %}

<h1>Workshop Steward -- {{ proposal.published_title }}</h1>
<h1>Workshop Steward -- {{ proposal.published_title or proposal.title }}</h1>

<p>{{ proposal.published_description }}</p>
<p>{{ proposal.published_description or proposal.description }}</p>

<p>&nbsp;</p>

<ul>
{% if time_locked %}
The full list of attendees will be available after {{ show_list_after }}
and for the duration of the {{ proposal.huamn_type }}
{% else %}
{% if time_locked %}
<p>The full list of attendees will be available after {{ show_list_after }}
and for the duration of the {{ proposal.type }}.</p>
{% else %}
<ul>
<form method="POST">
{{ form.hidden_tag() }}
<ul>
Expand All @@ -37,7 +37,7 @@ <h1>Workshop Steward -- {{ proposal.published_title }}</h1>
{% endfor %}
</ul>
</form>
{% endif %}
</ul>
</ul>
{% endif %}

{% endblock %}

0 comments on commit 83c3563

Please sign in to comment.