PageRenderTime 75ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/admin/templates/mako/admin/auth/user/add_form.html

https://code.google.com/p/mango-py/
HTML | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | c02629a74f86614f368d7172792d756f MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <%inherit file="admin/change_form.html"/>
  2. <%def name="block_form_top()">
  3. % if not is_popup:
  4. <p>${ trans("First, enter a username and password. Then, you'll be able to edit more user options.") }</p>
  5. % else:
  6. <p>${ trans("Enter a username and password.") }</p>
  7. % endif
  8. </%def>
  9. <%def name="block_after_field_sets()">
  10. <script type="text/javascript">document.getElementById("id_username").focus();</script>
  11. </%def>