{% 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
{% if is_ed_admin %}
Participants
Last name |
First name |
Email |
Organization/affiliation |
{% for participant in webinar.participants.all %}
{{ participant.last_name }} |
{{ participant.first_name }} |
{{ participant.email }} |
{% if participant.organization %}{{ participant.organization }}{% else %}{{ participant.affiliation }}{% endif %} |
{% empty %}
No registrations yet |
{% endfor %}
{% endif %}
{% endblock content %}