--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/app/templates/components/notice-component.hbs Mon Jul 04 11:15:25 2016 +0200
@@ -0,0 +1,48 @@
+<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 }}</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>
\ No newline at end of file