improve dicom uploading
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
{% extends 'generic/base.html' %}
|
||||
{% load crispy_forms_tags %}
|
||||
{% load auth_extras %}
|
||||
|
||||
{% block content %}
|
||||
<h2>Editing user: {{object.username}}</h2>
|
||||
This form allows you to edit additional user details. Name and emails can be edited <a href="{% url 'account_update' object.username %}">here</a>
|
||||
<form method="post">{% csrf_token %}
|
||||
{{ form|crispy }}
|
||||
<input type="submit" value="Update">
|
||||
</form>
|
||||
<h2>Editing user: {{object.username}}</h2>
|
||||
This form allows you to edit additional user details.
|
||||
|
||||
{% if request.user|has_group:"cid_user_manager" %}
|
||||
Name and emails can be edited <a href="{% url 'account_update' object.username %}">here</a>
|
||||
{% endif %}
|
||||
|
||||
<form method="post">{% csrf_token %}
|
||||
{{ form|crispy }}
|
||||
<input type="submit" value="Update">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user