symposion_app/pinaxcon/templates/registrasion/badge_form.html
James Polley d14048bcb8 Further changes to support badge generation for lca2018
* Undo some of the debugging done early in this series of patches
* Add ability for a user to preview their own badge
* Add a template for the LCA2018 badge
2017-12-26 21:01:40 +11:00

20 lines
469 B
HTML

{% extends "registrasion/base.html" %}
{% load bootstrap %}
{% block content %}
<h1>Create Badge</h1>
<p>Enter a username to autofill this form, or fill in the rest of the fields by hand.</p>
<form method="post" action="/tickets/badger/">
{% csrf_token %}
<table>
{{ form|bootstrap }}
</table>
<div class="form-actions">
<input class="btn btn-primary" type="submit" value="Create Badge" />
</div>
</form>
{% endblock %}