view default/event/invitation.html @ 84:b2ef34e602cf

base, js (websocket), css (main style): dynamic pages implementation, first draft: this patch introduces the browser part of dynamic pages. Dynamic pages work by establishing a websocket between server and the current page, if requested by server (which means that needed arguments are present in template). Once the connection is established, the server can, for now, reload the page, append HTML elements, or receive arbitrary data (without reloading the page, in opposition to data post). If connection can't be established, a popup will be displayed and connection will be retried many times after variable timeouts. The browser will finally give up and display an alert to client if the number of retries is too high (20 for now).
author Goffi <goffi@goffi.org>
date Wed, 03 Jan 2018 01:12:16 +0100
parents d8729eb9edb5
children
line wrap: on
line source

{% extends 'base/base.html' %}

{% block body %}
<div class='invitation_header box'>
    <h1>{% trans %}Welcome {{name}}{% endtrans %}</h1>
    <p class='instructions'>{% trans %}You have been invited to participate to an event{% endtrans %}</p>
    {% if event.image is defined %}
        <p><img id='event_picture' src="{{event.image}}"></p>
    {% endif %}
</div>

{% if days_left is defined %}
    {% if days_left > 0 %}
        <div id="event_counter" class="box">{% trans %}{{days_left}} days left{% endtrans %}</div>
    {% else %}
        <div id="event_counter" class="box">{% trans %}the event is finished{% endtrans %}</div>
    {% endif %}

{% endif %}

{% include 'event/attendance.html' %}

{% if items is defined %}
    {% include 'blog/articles.html' %}
{% endif %}

{% endblock body %}