{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Publications" %}

{% for publication in project.publication_set.all %} {% endfor %}
ID {% trans "Description" %}
{{ publication.publication_id }} {{ publication.description }}
{% trans 'more information' %} {% trans 'back' %}

{% trans "Create a new Publication" %}

{% csrf_token %} {{ form }}
{% endblock %}