{% extends "base.html" %} {% load i18n %} {% load url from future %} {% load i18n %} {% block head_title %}{% trans "Grids" %}{% endblock %} {% block body %}

{% trans "Grids" %}

{% if request.user.is_authenticated and profile.can_add_grid %}

{% trans "add grid ยป" %}

{% endif %}
{% for grid in grids %} {% endfor %}
{% trans "Grid" %} {% trans "Description" %} {% trans "Last Modified" %} {% trans "Packages" %} {% trans "Features" %}
{{ grid.title }} {{ grid.description }} {{ grid.modified|date:"D d M" }} {{ grid.gridpackage_count }} {{ grid.feature_set.count }}
{% endblock %}