{% load i18n %} {% load evelinks %} {% if has_corporation_history %} {% for corporation in corporation_history %} {% translate 'Corporation' %}
{{ corporation.corporation_name }}  {% if corporation.is_deleted %}  {% translate '(Closed)' %}  {% endif %} {{ corporation.start_date|date:MY_DATETIME_FORMAT }} to {% if not corporation.is_last %} {{ corporation.end_date|date:MY_DATETIME_FORMAT }} {% else %} {% translate 'Today' %} {% endif %}  ({{ corporation.end_date|timeuntil:corporation.start_date }})
{% endfor %} {% else %}

{% translate "(no data yet)" %}

{% endif %}