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.
21 lines
770 B
21 lines
770 B
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">编辑部门</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<form METHOD="post" >
|
|
{% csrf_token %}
|
|
<div class="form-group">
|
|
<label>标题</label>
|
|
<input type="text" class="form-control" placeholder="部门名称" name="title" value="{{ row_object.title }}"/>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">提交</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |