congress-dashboard/congress_dashboard/datasources/templates/datasources/datasource_detail.html

15 lines
451 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Data Source Overview" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Data Source Details: ")|add:datasource_name %}
{% endblock page_header %}
{% block main %}
{% include "admin/datasources/_datasource_overview.html" %}
<div id="datasources_tables">
{{ datasources_tables_table.render }}
</div>
{% endblock %}