main.html
337 Bytes
{% extends "base.html" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block page_content %}
<div class="page-header">
<h1>提交任务</h1>
</div>
<div class="col-md-4">
{{ wtf.quick_form(form_1) }}
<br/>
<br/>
{{ wtf.quick_form(form_2) }}
</div>
{% endblock %}