Initial commit: conference app with Flask

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 14:53:41 +00:00
commit dec6446d7d
48 changed files with 10644 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}{{ 'staff_dashboard'|t }} - {{ event.name }}{% endblock %}
{% block content %}
<div class="staff-dashboard">
<div class="staff-header">
<h1>{{ 'staff'|t }}: {{ event.name }}</h1>
<p>{{ 'welcome'|t }}, {{ staff_name }}</p>
</div>
<div class="staff-actions">
<a href="{{ url_for('event_scan', event_id=event.id) }}" class="btn btn-primary btn-lg">📷 {{ 'start_qr_scanner'|t }}</a>
</div>
</div>
{% endblock %}