Merge branch 'master' into ticket-testing
This commit is contained in:
commit
4162ba7c3f
5 changed files with 28 additions and 10 deletions
|
@ -16,7 +16,7 @@
|
|||
{% for room in timetable.rooms %}
|
||||
{% with room|trackname:timetable.day as track_name %}
|
||||
<th class="track-name">{% if track_name %}<p>{{ track_name }}{% endif %}</th>
|
||||
{% endwith %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
@ -44,6 +44,8 @@
|
|||
<em>Session chair:
|
||||
{% if not session.chair %}
|
||||
<a href="{% url "schedule_session_detail" session.id %}">Volunteer! 🙋</a>
|
||||
{% else %}
|
||||
<a href="{% url "schedule_session_detail" session.id %}">{{ session.chair.user.attendee.attendeeprofilebase.attendeeprofile.name }}</a>
|
||||
{% endif %}</em>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
6
vendor/regidesk/regidesk/models.py
vendored
6
vendor/regidesk/regidesk/models.py
vendored
|
@ -98,12 +98,16 @@ class CheckIn(models.Model):
|
|||
self.badge_printed = True
|
||||
self.save()
|
||||
|
||||
def unset_badge(self):
|
||||
self.badge_printed = False
|
||||
self.save()
|
||||
|
||||
def mark_schwag_given(self):
|
||||
self.schwag_given = True
|
||||
self.save()
|
||||
|
||||
def bulk_mark_given(self):
|
||||
self.badge_printed = True
|
||||
self.checked_in_bool = True
|
||||
self.schwag_given = True
|
||||
self.save()
|
||||
|
||||
|
|
|
@ -68,7 +68,8 @@
|
|||
<td>{{ attendee.attendeeprofilebase.attendeeprofile.name }}</td>
|
||||
<td>{{ attendee.ticket_type }}</td>
|
||||
<td>{{ attendee.user.email }}</td>
|
||||
<td><a href="{% url 'regidesk:check_in_user_view' attendee.user.checkin.code %}">{{ attendee.user.checkin.code }}</a></td>
|
||||
<td>{% if attendee.user.checkin.code %}
|
||||
<a href="{% url 'regidesk:check_in_user_view' attendee.user.checkin.code %}">{{ attendee.user.checkin.code }}</a>{% endif %}</td>
|
||||
<td>
|
||||
{% if attendee.user.checkin %}
|
||||
{% if attendee.user.checkin.boardingpass %}
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<dt>Spearker Dinner Tickets</dt><dd>{{ speakers_dinner_count }}</dd>
|
||||
<dt>PDNS Tickets</dt><dd>{{ pdns_count }}</dd>
|
||||
<dt>Over 18 years</dt><dd>{% if user.attendee.attendeeprofilebase.attendeeprofile.of_legal_age %}yes{% else %}<strong class="red">NO</strong>{% endif %}</dd>
|
||||
<dt>Username</dt><dd>{{ user.username }}</dd>
|
||||
</dl>
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
|
@ -71,11 +72,15 @@
|
|||
<dl class="dl-horizontal">
|
||||
<dt>Status</dt><dd>{% if check_in.badge_printed %}Marked{% else %}Not marked{% endif %} as printed</dd>
|
||||
</dl>
|
||||
<form method="post">
|
||||
<form method="post" hidden>
|
||||
<input type="checkbox" name="badge" value="badge" checked hidden>
|
||||
<a type="button" class="btn btn-primary" href="badge">Show Badge</a>
|
||||
<input class="btn {% if check_in.badge_printed %}btn-danger{% else %}btn-success{% endif %} pull-right" type="submit" value="Submit">
|
||||
</form>
|
||||
<form method="post">
|
||||
<input type="checkbox" name="unbadge" value="unbadge" checked hidden>
|
||||
<input class="btn btn-danger pull-right" type="submit" value="Force Reprint">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -103,15 +108,16 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel {% if check_in.badge_printed or check_in.schwag_given %}panel-danger{% else %}panel-success{% endif %}">
|
||||
<div class="panel {% if check_in.checked_in_bool or check_in.schwag_given %}panel-danger{% else %}panel-success{% endif %}">
|
||||
<div class="panel-heading">Bulk actions</div>
|
||||
<div class="panel-body">
|
||||
<p>Mark attendee as checked in and schwag given</p>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>Status</dt><dd>{% if check_in.badge_printed or check_in.schwag_given %}One of the items in bulk action is marked as given already{% else %}Both items are marked as unrecived{% endif %}</dd>
|
||||
<dt>Status</dt><dd>{% if check_in.checked_in_bool or check_in.schwag_given %}One of the items in bulk action is marked as given already{% else %}Both items are marked as unrecived{% endif %}</dd>
|
||||
</dl>
|
||||
<form method="post">
|
||||
<input type="checkbox" name="bulk" value="bulk" checked hidden>
|
||||
<input class="btn {% if check_in.badge_printed or check_in.schwag_given %}btn-danger{% else %}btn-success{% endif %} pull-right" type="submit" value="Submit">
|
||||
<input class="btn {% if check_in.checked_in_bool or check_in.schwag_given %}btn-danger{% else %}btn-success{% endif %} pull-right" type="submit" value="Submit">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
|
11
vendor/regidesk/regidesk/views.py
vendored
11
vendor/regidesk/regidesk/views.py
vendored
|
@ -52,7 +52,8 @@ def boardingpass(request):
|
|||
'default template to use. This page has similar information to '
|
||||
'the boarding pass - please check back later.')
|
||||
return redirect('/tickets/review')
|
||||
prepare_boarding_pass(request, templates[0])
|
||||
prepare_boarding_pass(request.user, templates[0])
|
||||
checkin = CheckIn.objects.get_or_create(user=user)[0]
|
||||
|
||||
boardingpass = checkin.boardingpass
|
||||
qrcode_url = request.build_absolute_uri(reverse("regidesk:checkin_png", args=[checkin.code]))
|
||||
|
@ -81,7 +82,9 @@ def boarding_overview(request, boarding_state="pending"):
|
|||
price__gte=0
|
||||
)
|
||||
|
||||
ticketholders = { ticket.invoice.user: ticket.product.name for ticket in tickets }
|
||||
print(datetime.now())
|
||||
ticketholders = ( ticket.invoice.user for ticket in tickets )
|
||||
print(datetime.now())
|
||||
|
||||
attendees = people.Attendee.objects.select_related(
|
||||
"attendeeprofilebase",
|
||||
|
@ -194,7 +197,7 @@ def prepare_boarding_pass(user, template, attendee=None):
|
|||
if attendee:
|
||||
user = attendee.user
|
||||
else:
|
||||
user = request.user
|
||||
user = user
|
||||
attendee=user.attendee
|
||||
checkin = CheckIn.objects.get_or_create(user=user)
|
||||
ctx = {
|
||||
|
@ -312,6 +315,8 @@ def check_in_overview(request, access_code):
|
|||
check_in.bulk_mark_given()
|
||||
elif 'exception' in request.POST:
|
||||
check_in.set_exception(request.POST['exception'])
|
||||
elif 'unbadge' in request.POST:
|
||||
check_in.unset_badge()
|
||||
return redirect(request.path)
|
||||
ctx = {
|
||||
'check_in': check_in,
|
||||
|
|
Loading…
Reference in a new issue