You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
{% extends 'myadmin/base.html' %}
|
|
{% load static %}
|
|
{% load thumbnail %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="ui grid">
|
|
<div class="row">
|
|
<h3>用户编辑</h3>
|
|
</div>
|
|
<div class="ui divider"></div>
|
|
<div class="row">
|
|
<div class="v-form-wrap">
|
|
|
|
<form class="ui form" novalidate method="post" action="{% url 'myadmin:user_edit' form.instance.pk %}"
|
|
enctype="multipart/form-data" role="form">
|
|
{% csrf_token %}
|
|
<div class="field">
|
|
<label>用户名</label>
|
|
{{ form.username }}
|
|
</div>
|
|
<div class="field">
|
|
<div class="ui checkbox">
|
|
{{form.is_staff}}
|
|
<label>管理员账号</label>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="ui primary button" type="submit">保存</button>
|
|
|
|
{% include "base/form_errors.html" %}
|
|
{% include "base/form_messages.html" %}
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock content %}
|
|
|
|
{% block modal %}
|
|
{% endblock modal %}
|
|
|
|
|