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

{% trans "Data Sources" %}

{% if sources %}
{% csrf_token %} {% for source in sources %} {% endfor %}
{% trans "ID" %} {% trans "Protocol" %} {% trans "Name" %} {% trans "Description" %}
{{ source.data_source_id }} {{ source.protocol }} {{ source.name }} {{ source.description }}
{% if update == False %} {% if source.owner == True %} {% else %} {% endif %}
{% else %}
{% endif %}
{% endif %}
{% if update == False %}

{% trans 'Add a Data Source' %}

{% else %}

{% trans 'Update a Data Source' %}

{% endif%}
{% csrf_token %}
{% trans "Protocol" %}
{% if update == False %} {% else %} {% endif %}
{% trans 'Cancel' %}
{% endblock %} {% block script %} {% endblock %}