cms/app-client/app/templates/components/notice-component.hbs
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 05 Aug 2016 18:51:59 +0200
changeset 253 0be9770b09b4
parent 231 b883755cc0b8
child 269 9659e91242e1
permissions -rw-r--r--
Hide/show transcript button in the player - Do not request transscript when property is null in the document request

{{#if model}}
<i class="fa fa-close" {{action 'close'}}>Close</i>
{{/if}}

<h2>Notice</h2>
<h3>{{ item.title }}</h3>
<table>
<tr>
	<td class="title">Editeur(s)</td>
	<td>
		<ul>
			{{#each item.publishers as |publisher|}}
			<li>{{ publisher }}</li>
			{{/each}}
		</ul>
	</td>
</tr>
<tr>
	<td class="title">Langue</td>
	<td>{{ doc-language url=item.language class="language"}}</td>
</tr>
<tr>
	<td class="title">Enregistré en</td>
	<td>{{ short-date item.issued }}</td>
</tr>
<tr>
	<td class="title">Participants</td>
	<td>
		<ul>
		{{#each participants as |participant|}}
		<li>{{ participant.name }} ({{ participant.role }})</li>
		{{/each}}
		</ul>
	</td>
</tr>
<tr>
	<td class="title">Description(s)</td>
	<td></td>
</tr>
<tr>
	<td class="title">Lieu</td>
	<td>{{ location }}</td>
</tr>
<tr>
	<td class="title">Durée</td>
	<td>{{to-minutes item.duration}}</td>
</tr>
<tr>
	<td class="title">Droits</td>
	<td></td>
</tr>
</table>