40 lines
875 B
XML
40 lines
875 B
XML
<metal:block use-macro="main_template">
|
|
<div metal:fill-slot="content">
|
|
|
|
<div class="row">
|
|
<p>
|
|
<a href="doc_edit/0" class="btn btn-success" role="button">
|
|
<span class="glyphicon glyphicon-plus"></span>
|
|
Créér une nouvelle doc</a>
|
|
</p>
|
|
<div class="col-md-6">
|
|
<table class="table table-condensed table-striped table-bordered">
|
|
<tr>
|
|
<th>MEMOS</th>
|
|
</tr>
|
|
|
|
<tr tal:repeat="ligne memos">
|
|
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<table class="table table-condensed table-striped table-bordered">
|
|
<tr>
|
|
<th>DOCUMENTS</th>
|
|
</tr>
|
|
|
|
<tr tal:repeat="ligne docs">
|
|
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
</div>
|
|
|
|
</metal:block>
|
|
|