|
|
@ -49,32 +49,45 @@ |
|
|
|
<template id="kalachakra.event_description_full" inherit_id="website_event.event_description_full"> |
|
|
|
|
|
|
|
<xpath expr="//span[@itemprop='description']" position="before"> |
|
|
|
<t t-if="event.media_link_ids"> |
|
|
|
<h6>Media links :</h6> |
|
|
|
<table class="table" style="font-size: smaller;"> |
|
|
|
<tr> |
|
|
|
<th>date</th> |
|
|
|
<th>time start</th> |
|
|
|
<th style="width: 10%;">link</th> |
|
|
|
<th>format</th> |
|
|
|
<th>duration</th> |
|
|
|
<th>format</th> |
|
|
|
<th>description</th> |
|
|
|
</tr> |
|
|
|
<t t-foreach="event.media_link_ids" t-as="media"> |
|
|
|
<tr> |
|
|
|
<td ><span t-esc="media.date_recording" /></td> |
|
|
|
<td><span t-esc="media.start_time_recording" /></td> |
|
|
|
<td><a t-attf-href="#{media.link}"><span t-esc="media.link" /></a></td> |
|
|
|
<td><span t-esc="media.format_recording" /></td> |
|
|
|
<td><span t-esc="media.duration" /></td> |
|
|
|
<td><span t-esc="media.description" /></td> |
|
|
|
|
|
|
|
|
|
|
|
</tr> |
|
|
|
</t> |
|
|
|
</table> |
|
|
|
<t t-if="event.media_session_ids"> |
|
|
|
<h6>Media sessions recording :</h6> |
|
|
|
<t t-foreach="event.media_session_ids.sorted(key=lambda r: r.sequence)" t-as="media_session"> |
|
|
|
<h6 t-esc="media_session.description"></h6> |
|
|
|
<t t-if="media_session.media_link_ids"> |
|
|
|
<table class="table" style="font-size: smaller;"> |
|
|
|
<tr> |
|
|
|
<th>date</th> |
|
|
|
<th>description</th> |
|
|
|
<th>start time</th> |
|
|
|
<th style="width: 10%;"> FR link</th> |
|
|
|
<th style="width: 10%;"> EN link</th> |
|
|
|
<th>format</th> |
|
|
|
<th>duration</th> |
|
|
|
|
|
|
|
</tr> |
|
|
|
<t t-foreach="media_session.media_link_ids.sorted(key=lambda r: r.date_recording)" t-as="media"> |
|
|
|
<tr> |
|
|
|
<td ><span t-esc="media.date_recording" /></td> |
|
|
|
<td><span t-esc="media.description" /></td> |
|
|
|
<td><span t-esc="media.start_time_recording" /></td> |
|
|
|
<td><a t-attf-href="#{media.link_fr}"><span>FR</span></a></td> |
|
|
|
<td><a t-attf-href="#{media.link_fr}"><span>EN</span></a></td> |
|
|
|
<td><span t-esc="media.format_recording" /></td> |
|
|
|
<td><span t-esc="media.duration" /></td> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</tr> |
|
|
|
</t> |
|
|
|
</table> |
|
|
|
</t> |
|
|
|
<br></br> |
|
|
|
|
|
|
|
</t> |
|
|
|
</t> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</xpath> |
|
|
|
<xpath expr="//span[@itemprop='description']" position="after"> |
|
|
|
<t t-if="event.find_out_more_link"> |
|
|
|