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

{% trans "Documentation" %}

{% if project.documentation_set.all %}
{% csrf_token %} {% for docu in project.documentation_set.all %} {% for system in systems %} {% if system.0 == docu.system %} {% endif %} {% endfor%} {% endfor %}
ID {% trans "Description" %} {% trans "System" %}
{{ docu.documentation_id }} {{ docu.description }}{{ system.1 }}
{% if update == False %}
{% else %}
{% endif %}
{% endif %}
{% if update == False %}

{% trans 'Add a Documentation' %}

{% else %}

{% trans 'Update a Documentation' %}

{% endif%}
{% csrf_token %}
{% trans "Description" %}
{% trans "Link" %}
{% trans "System" %}
{% if update == False %} {% else %} {% endif %}
{% trans 'or create one with' %} {% trans 'OpenBis' %}, {% trans 'MediaWiki' %}, {% trans 'MediaWiki (FWK)' %} {% trans 'or' %} {% trans 'Lims' %} {% trans 'Cancel' %}
{% endblock %}