{% 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" %} {{ project.name }}


{% trans "Project translations" %}

{% trans "Download archive" %}

{% trans "Add new" %}

{% crispy form %}

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

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

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