{% extends "po_projects/base.html" %} {% load i18n crispy_forms_tags %}{% load url from future %} {% block title %}{% trans "Create a new project" %}{% endblock %} {% block content %}

{% trans "Project catalogs" %}

{% trans "Download archive" %} {% if perms.po_projects.change_project %}{% trans "Update" %}{% endif %} {% if perms.po_projects.add_catalog %}

{% trans "Add new catalog" %}

{% crispy form %}{% endif %}

{% trans "Messages to translate" %} ({{ project.get_current_version.templatemsg_set.count }})

    {% for item in project.get_current_version.templatemsg_set.all %}
  1. {{ item.message }} {% comment %}{{ item.locations }}{% endcomment %}

  2. {% endfor %}
{% endblock %}