Allow displaying event details
This commit is contained in:
14
calsocial/templates/event-details.html
Normal file
14
calsocial/templates/event-details.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<h1>
|
||||
{{ event.title }}<br>
|
||||
<small>
|
||||
{{ event.start_time_for_user(current_user) }}–{{ event.end_time_for_user(current_user) }}
|
||||
{% if current_user.timezone | string != event.time_zone %}
|
||||
({{ event.start_time_tz }}–{{ event.end_time_tz }} {{ event.time_zone }})
|
||||
{% endif %}
|
||||
</small>
|
||||
</h1>
|
||||
{{ event.description }}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user