bornhack-website/src/backoffice/templates/event_session_create_type_s...

26 lines
1.0 KiB
HTML

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block content %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Create New EventSession - Select Event Type</h3>
</div>
<div class="panel-body">
<p class="lead">Select Event Type for the new EventSession</p>
<div class="list-group">
{% for event_type in event_type_list %}
<a href="{%url 'backoffice:event_session_create_location_select' camp_slug=camp.slug event_type_slug=event_type.slug %}" class="list-group-item">
<h4 class="list-group-item-heading">
<i class="fas fa-{{ event_type.icon }} fa-2x fa-pull-left fa-fw" style="color: {{ event_type.color }};"></i>
{{ event_type.name }}<span class="pull-right"><i class="fas fa-plus fa-2x fa-pull-right" style="color: {{ event_type.color }};"></i></span>
</h4>
{% if event_type.description %}<p class="list-group-item-text">{{ event_type.description }}</p>{% endif %}
</a>
{% endfor %}
</div>
</div>
</div>
{% endblock content %}