Blame view

ControlUI/app/templates/main.html 337 Bytes
1f1943eb   qijun   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}