forked from gergely/calendar-social
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
{% extends 'base.html' %}
|
||
{% from '_macros.html' import field %}
|
||
|
||
{% block content %}
|
||
<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>
|
||
{% endif %}
|
||
{{ event.start_time_for_user(current_user) | datetimeformat(rebase=false) }}
|
||
–
|
||
{{ event.end_time_for_user(current_user) | datetimeformat(rebase=false) }}
|
||
</div>
|
||
</h2>
|
||
{{ event.description }}
|
||
<hr>
|
||
<h2>{% trans %}Invited users{% endtrans %}</h2>
|
||
<ul>
|
||
{% for invitation in event.invitations %}
|
||
<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>
|
||
<form method="post" class="ui form">
|
||
{{ form.hidden_tag() }}
|
||
<div class="inline fields">
|
||
{{ field(form.invitee, inline=true) }}
|
||
|
||
<button type="submit" class="ui button">{% trans %}Invite{% endtrans %}</button>
|
||
</div>
|
||
</form>
|
||
{% endblock %}
|