Add attendee type management and staff codes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-25 07:17:47 +00:00
parent dec6446d7d
commit 64ab1d0412
16 changed files with 844 additions and 78 deletions
+5
View File
@@ -3,6 +3,7 @@
{% block title %}{{ event.name }} - NetEvents{% endblock %}
{% block content %}
<div style="padding: 20px;">
<style>
.section-box {
background: #fff;
@@ -374,6 +375,9 @@ th.sort-desc .sort-icon::before {
<h2>{{ 'registered_attendees'|t }}</h2>
<div class="section-actions">
<a href="{{ url_for('register_attendee', code=event.code) }}" class="btn btn-primary">{{ 'add_attendee'|t }}</a>
<a href="{{ url_for('event_badges', event_id=event.id) }}" class="btn btn-secondary">🖨️ {{ 'print_badges'|t }}</a>
<a href="{{ url_for('download_rectangular_badges', event_id=event.id) }}" class="btn btn-secondary">🏷️ Rectangular Labels (80x50mm)</a>
<a href="{{ url_for('download_attendees_excel', event_id=event.id) }}" class="btn btn-secondary">📥 {{ 'download_excel'|t }}</a>
</div>
{% if attendees %}
@@ -644,4 +648,5 @@ function fallbackCopy(url) {
// Initial selected count
updateSelectedCount();
</script>
</div>
{% endblock %}