{% extends "mapit/base.html" %} {% load i18n %} {% load url from compat %} {% block title %}{% trans 'Generations' %}{% endblock title %} {% block content %}

{% trans 'Generations' %}

{% url "mapit_generations" as json_url %}

{% blocktrans %}Get this data as JSON{% endblocktrans %}

    {% for gen in generations %}
  1. #{{ gen.id }} – {{ gen.description }}

    {{ gen.created|date }}, {% if gen.active %}{% trans 'Active' %}{% else %}{% trans 'Inactive' %}{% endif %}
  2. {% endfor %}
{% endblock %}