diff --git a/pinaxcon/templates/registrasion/dashboard-widget.html b/pinaxcon/templates/registrasion/dashboard-widget.html new file mode 100644 index 0000000000000000000000000000000000000000..0a11dc6dc5f6472fdc5c05d82b00334bc0d5ab5c --- /dev/null +++ b/pinaxcon/templates/registrasion/dashboard-widget.html @@ -0,0 +1,72 @@ +
+
+
+ {% if not user.attendee.completed_registration %} + + Register for the conference + + {% else %} + + Edit your attendee profile + + + {% items_pending as pending %} + {% if pending %} + + Pay your registration + + {% endif %} + {% endif %} +
+

+ + {% trans "Registration" %} +

+ +
+ +
+ {% if not user.attendee.completed_registration %} +

To attend the conference, you must purchase a ticket. Use our registration form to purchase your ticket. + {% else %} +

Your registration

+ {% items_pending as pending %} + {% if pending %} +
Items pending payment
+ {% include "registrasion/items_list.html" with items=pending %} + {% endif %} + {% items_purchased as purchased %} + {% if purchased %} +
Paid items
+ {% include "registrasion/items_list.html" with items=purchased %} + {% endif %} +
Add/Update items
+ {% available_categories as categories %} + {% for category in categories %} +
  • {{ category.name }}
  • + {% endfor %} + + + {% invoices as invoices %} + {% if invoices %} +
    Invoices
    + + {% endif %} + + {% available_credit as credit %} + {% if credit %} +

    You have ${{ credit }} leftover from refunded invoices. Contact the conference organisers + to put this toward other purchases, or to refund it.

    + {% endif %} + {% endif %} +
    +