Files @ 7c77001d5e7d
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/_category_list.html

Joel Addison
Add Venueless integration to Regidesk

Create Venueless login token as part of checkin to allow attendee to
join an online event from the dashboard.
1
2
3
4
5
6
7
<ul class="list-unstyled">
  {% for category in categories %}
    {% if not category in exclude %}
      <li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
    {% endif %}
  {% endfor %}
</ul>