Heuzef - Les notes excentriques d'un bidouilleur.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
449 B

  1. {% extends "base.html" %}
  2. {% block title %}
  3. Categories {{ super() }}
  4. {% endblock %}
  5. {% block page_header %}
  6. Categories
  7. {% endblock %}
  8. {% block content %}
  9. <table class="table table-bordered table-striped">
  10. {% for category, articles in categories|sort %}
  11. <tr>
  12. <td><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></td>
  13. <td>{{ articles|count }}</td>
  14. </tr>
  15. {% endfor %}
  16. </table>
  17. {% endblock %}