{% extends "base_resource.html" %} {% load i18n %} {% block entity_content %}
{{ mysql_database }}

{% trans 'MySQL Users' %}

{% trans "Every MySQL database must have at least one user created that has access to it.." %}

{% trans 'New MySQL User' %} {% if entity_list %} {% for entity in entity_list %} {% endfor %}
{% trans 'User' %}{% trans "Status" %}{% trans 'Actions' %}
{{ entity.user }} {{ entity.get_display_status }} {% trans 'Delete' %} {% trans 'Edit' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %}
{% if is_paginated %} {% endif %} {% endif %} {% endblock %}