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.
27 lines
806 B
27 lines
806 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 %}
|
|
|
|
|