cms/app-client/app/templates/components/notice-component.hbs
author Chloe Laisne <chloe.laisne@gmail.com>
Mon, 04 Jul 2016 23:54:48 +0200
changeset 226 2103e6c58266
parent 217 989b9c36b849
child 228 a2497a2b6224
permissions -rw-r--r--
Notice text-color

<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>