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/edit_user.html

19 lines
548 B
HTML

{% extends "organization/base.html" %}
{% load i18n %}
{% block content %}
<form method="post" autocomplete="off">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<div class="form-actions">
<input type="submit" value="{% trans "Update" %}" class="btn btn-primary" />
<button name="delete" class="ui-state-default delete-button icon-delete">{% trans "Delete" %}</button>
</div>
<script>
$('input.datepicker').datepicker({dateFormat: "yy-mm-dd", weekStart: 1 });
</script>
</form>
{% endblock %}