Projet

Général

Profil

Télécharger (839 octets) Statistiques
| Branche: | Tag: | Révision:

root / uauth / organization / templates / organization / create-users.html @ d9dfbd19

1
{% extends "organization/base.html" %}
2
{% load i18n static %}
3

    
4
{% block css %}
5
{{ block.super }}
6
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/jquery-ui.min.css" %}" />
7
{% endblock %}
8

    
9
{% block extrascripts %}
10
<script src="{% static "js/jquery-ui.min.js" %}"></script>
11
{% endblock %}
12

    
13

    
14
{% block title %}
15
{% trans "User creation" %}
16
{% endblock %}
17

    
18
{% block content %}
19
<h1>{% trans "Create a user" %}<h1>
20
<h3>{% trans "or more" %}<em> login-N</em></h2>
21

    
22
<form method="post" autocomplete="off">
23
	{% csrf_token %}
24
	<table>
25
	  {{ form.as_table }}
26
	</table>
27
	<div class="form-actions">
28
	  <input type="submit" value="{% trans "Create" %}" class="btn btn-primary" />
29
	</div>
30
        <script>
31
          $('input.datepicker').datepicker({ dateFormat: "yy-mm-dd", weekStart: 1 });
32
        </script>
33
</form>
34
{% endblock %}
(2-2/5)