{% extends "users/base.html" %} {% block title %}List of PostgreSQL Database{% endblock title %} {% block content %}

List of PostgreSQL Database

{% for database in databases %} {% empty %} {% endfor %}
Database Size Privileged Users Actions
{{ database.db_name }} {{ database.size_display }} {% if database.owner %} {{ database.owner }} {% else %} unkonwn {% endif %} Manage
{% csrf_token %}
No Dtabase found.
{% endblock content %} {% include "users/footer.html" %}