Html pages no include tags and completion date.

This commit is contained in:
2018-02-04 16:54:28 +01:00
parent 210b3ccbc6
commit 5f87a31248
16 changed files with 1266 additions and 22 deletions

View File

@@ -27,11 +27,30 @@
<div class="row" style="padding-top: 40px;">
<div class="col">
<ul>
{% for s in solutions %}
<li><a href="{{s.html}}">{{s.name}}</a></li>
{% endfor %}
</ul>
<table class="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Complete on</th>
<th scope="col">Link</th>
<th scope="col">Tags</th>
</tr>
</thead>
<tbody>
{% for s in solutions %}
<tr>
<td>{{s.name}}</td>
<td>{{s.metadata.completion_date}}</td>
<td><a href="{{s.html}}">{{s.name}}</a></td>
<td>
{% for t in s.metadata.tags %}
<kbd>{{t}}</kbd>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>