Skip to content

Commit

Permalink
wip: seating plan select skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzlerch committed Jul 3, 2023
1 parent e952328 commit e4c13a5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pretix_manualseats/templates/pretix_manualseats/event/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,21 @@ <h1>{% trans "Manual Seats" %} 💺</h1>
{% if seatingplans|length > 0 %}
<p>
You have imported at least one seating plan 🥸 → {{ seatingplans|length }} seating plans are present
</p>
</p><br>
{% for sp in seatingplans %}
<p>{{sp.name}}</p>
{% endfor %}
<br>
<form action="" method="post" class="form-horizontal" >
<fieldset>
<legend>{% trans "Seating plan selection" %}</legend>
</fieldset>
<div class="form-group submit-group">
<button type="submit" class="btn btn-primary btn-save">
<i class="fa fa-save"></i> {% trans "Save" %}
</button>
</div>
</form>
{% else %}
<div class="alert alert-info">
<p>
Expand Down

0 comments on commit e4c13a5

Please sign in to comment.