Jan Dittberner
0e1a84826d
- implement userdbs.forms.AddUserDatabaseForm - implement userdbs.views.AddUserDatabase - add new URL pattern 'add_userdatabase' in userdbs.urls - add templates userdbs/base.html and userdbs/userdatabase_create.html - add generated code documentation for new modules
31 lines
1,022 B
HTML
31 lines
1,022 B
HTML
{% 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 %}
|
|
<p>{% blocktrans %}Please enter a password for a new database user for your database.{% endblocktrans %}</p>
|
|
{% crispy form %}
|
|
{% endblock content %}
|
|
|
|
{% block extra_js %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('input[type=password]').val('').first().focus();
|
|
});
|
|
</script>
|
|
{% endblock %}
|