Html pages no include tags and completion date.
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user