{% extends 'webinars/base.html' %} {% load crispy_forms_tags %} {% load automarkup %} {% load user_groups %} {% block pagetitle %}: Webinar {{ webinar }}{% endblock %} {% block breadcrumb_items %} Webinars {{ webinar }} {% endblock breadcrumb_items %} {% block content %} {% is_ed_admin request.user as is_ed_admin %}

{{ webinar.name }}

Date and time {{ webinar.date_and_time|date:"D Y-m-d H:i e" }} ({{ webinar.date_and_time|date:"c" }})
Duration {{ webinar.duration }}
Link {{ webinar.link }}

Description

{% automarkup webinar.description %}

Register

Registration form
{% crispy registration_form %}
{% if is_ed_admin %}

Participants

{% for participant in webinar.participants.all %} {% empty %} {% endfor %}
Last name First name Email Organization/affiliation
{{ participant.last_name }} {{ participant.first_name }} {{ participant.email }} {% if participant.organization %}{{ participant.organization }}{% else %}{{ participant.affiliation }}{% endif %}
No registrations yet
{% endif %}
{% endblock content %}