Blame view

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