view default/event/invitation.html @ 19:422c54e0204a

event: adaptation to changes in backend/Libervia + background_image can now be specified in template data
author Goffi <goffi@goffi.org>
date Fri, 19 May 2017 12:59:43 +0200
parents 48b831ab4238
children 8fa2fd2e928e
line wrap: on
line source

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

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

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

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

{% endblock body %}