{% extends "userdbs/base.html" %} {% load i18n crispy_forms_tags %} {% block title %}{{ block.super }} - {% spaceless %} {% if user == customer %} {% blocktrans %}Add new Database{% endblocktrans %} {% else %} {% blocktrans with full_name=customer.get_full_name %}Add new Database for Customer {{ full_name }}{% endblocktrans %} {% endif %} {% endspaceless %}{% endblock title %} {% block page_title %}{% spaceless %} {% if user == customer %} {% blocktrans %}Add new Database{% endblocktrans %} {% else %} {% blocktrans with full_name=customer.get_full_name %}Add new Database for Customer {{ full_name }}{% endblocktrans %} {% endif %} {% endspaceless %}{% endblock page_title %} {% block content %}

{% blocktrans %}Please enter a password for a new database user for your database.{% endblocktrans %}

{% crispy form %} {% endblock content %} {% block extra_js %} {% endblock %}