Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / admin / auth / user / add_form.html @ 1a305335

History | View | Annotate | Download (443 Bytes)

1
{% extends "admin/change_form.html" %}
2
{% load i18n %}
3

    
4
{% block form_top %}
5
  {% if not is_popup %}
6
    <p>{% trans "First, enter a username and password. Then, you'll be able to edit more user options." %}</p>
7
  {% else %}
8
    <p>{% trans "Enter a username and password." %}</p>
9
  {% endif %}
10
{% endblock %}
11

    
12
{% block after_field_sets %}
13
<script type="text/javascript">document.getElementById("id_username").focus();</script>
14
{% endblock %}