calendar-social/calsocial/templates/event-details.html

46 lines
1.8 KiB
HTML
Raw Normal View History

2018-07-03 12:22:03 +00:00
{% extends 'base.html' %}
{% from '_macros.html' import field %}
2018-07-03 12:22:03 +00:00
{% block content %}
2018-07-13 08:19:37 +00:00
<h2 class="ui header">
<div class="content">
{{ event.title }}<br>
<div class="sub header">
{%- if current_user.timezone | string != event.time_zone -%}
<span title="{{ _('This event is organised in the %(timezone)s time zone, in which it happens between %(start_time)s and %(end_time)s', timezone=event.time_zone, start_time=event.start_time_tz|datetimeformat(rebase=false), end_time=event.end_time_tz|datetimeformat(rebase=false)) }}">
<i class="fa fa-exclamation-triangle timezone-warning"></i>
<span class="sr-only">
{{ _('This event is organised in the %(timezone)s time zone, in which it happens between %(start_time)s and %(end_time)s', timezone=event.time_zone, start_time=event.start_time_tz, end_time=event.end_time_tz) }}
</span>
</span>
2018-07-03 12:22:03 +00:00
{% endif %}
2018-07-13 08:19:37 +00:00
{{ event.start_time_for_user(current_user) | datetimeformat(rebase=false) }}
{{ event.end_time_for_user(current_user) | datetimeformat(rebase=false) }}
</div>
</h2>
2018-07-03 12:22:03 +00:00
{{ event.description }}
<hr>
<h2>{% trans %}Invited users{% endtrans %}</h2>
<ul>
{% for invitation in event.invitations %}
2018-07-10 08:58:43 +00:00
<li>
{{ invitation.invitee }}
{% if invitation.invitee == current_user.profile %}
<a href="{{ url_for('accept_invite', invite_id=invitation.id) }}">Accept</a>
{% endif %}
</li>
{% endfor %}
</ul>
<hr>
<h2>{% trans %}Invite{% endtrans %}</h2>
2018-07-13 08:19:37 +00:00
<form method="post" class="ui form">
{{ form.hidden_tag() }}
2018-07-13 08:19:37 +00:00
<div class="inline fields">
{{ field(form.invitee, inline=true) }}
2018-07-13 08:19:37 +00:00
<button type="submit" class="ui button">{% trans %}Invite{% endtrans %}</button>
</div>
</form>
2018-07-03 12:22:03 +00:00
{% endblock %}