{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{% trans "Company list" %}

{% trans "Add" %}
{% if object_list %}
{% for c in object_list %} {% endfor %}
{% trans "Name" %} {% trans "Actions" %}
{{c.name}} {% trans "View" %} {% trans "Edit" %} {% trans "Delete" %}
{% else %}

{% trans "No companies" %}

{% endif %} {% endblock content %}