Skip to content

Commit

Permalink
Fix wrong header column order
Browse files Browse the repository at this point in the history
  • Loading branch information
Compizfox committed Oct 15, 2018
1 parent 9b1c35a commit c6e6378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/registration_create.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ <h1>{% trans "Voeg inschrijvingen toe aan" %} {{ event.name }}</h1>
<thead>
<tr>
<th>{% trans "Gebruikersnaam" %}</th>
<th>{% trans "Datum" %}</th>
{% if event.note_field != '' %}
<th>{{ event.note_field }}</th>
{% endif %}
<th>{% trans "Datum" %}</th>
<th></th>
</tr>
</thead>
Expand Down

0 comments on commit c6e6378

Please sign in to comment.