comparison 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
comparison
equal deleted inserted replaced
18:d4a8afa7b590 19:422c54e0204a
2 2
3 {% block body %} 3 {% block body %}
4 <div class='invitation_header box'> 4 <div class='invitation_header box'>
5 <h1>Welcome {{name}}</h1> 5 <h1>Welcome {{name}}</h1>
6 <p class='instructions'>You have been invited to participate to an event</p> 6 <p class='instructions'>You have been invited to participate to an event</p>
7 {% if event.picture is defined %} 7 {% if event.image is defined %}
8 <p><img id='event_picture' src="{{event.picture}}"></p> 8 <p><img id='event_picture' src="{{event.image}}"></p>
9 {% endif %} 9 {% endif %}
10 </div> 10 </div>
11 11
12 {% include 'event/attendance.html' %} 12 {% include 'event/attendance.html' %}
13 13