This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/uauth/organization/templates/organization/create-users.html

35 lines
839 B
HTML

{% extends "organization/base.html" %}
{% load i18n static %}
{% block css %}
{{ block.super }}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/jquery-ui.min.css" %}" />
{% endblock %}
{% block extrascripts %}
<script src="{% static "js/jquery-ui.min.js" %}"></script>
{% endblock %}
{% block title %}
{% trans "User creation" %}
{% endblock %}
{% block content %}
<h1>{% trans "Create a user" %}<h1>
<h3>{% trans "or more" %}<em> login-N</em></h2>
<form method="post" autocomplete="off">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<div class="form-actions">
<input type="submit" value="{% trans "Create" %}" class="btn btn-primary" />
</div>
<script>
$('input.datepicker').datepicker({ dateFormat: "yy-mm-dd", weekStart: 1 });
</script>
</form>
{% endblock %}