cms/app-client/app/templates/components/notice-component.hbs
author ymh <ymh.work@gmail.com>
Wed, 06 Jul 2016 14:24:21 +0200
changeset 230 6e4cabc614ef
parent 228 a2497a2b6224
child 231 b883755cc0b8
permissions -rw-r--r--
forgotten hgignore file

<i class="fa fa-close" {{action 'close'}}>Close</i>
<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>