1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>AI_BRAIN</title>
- <style type="text/css">
- <!--
- h3 {
- margin-left:10px;
- text-align: center;
- }
- form {
- margin-left:10px;
- }
- .brain{
- text-align: center; /*让div内部文字居中*/
- }
- .inline{
- border:1px solid #000;
- border-radius: 10px;
- width: 360px;
- height: 300px;
- }
- -->
- </style>
- </head>
- <body>
- <div class="brain">
- <h2>↓ ↓ AI-BRAIN ↓ ↓</h2><br>
- </div>
- <div class="inline" style="margin-left: 25%;float: left">
- <h3>答题卡分割</h3>
- <form action="/segment/sheet_detail/" method="post" enctype="multipart/form-data">
- <p>上传一张试卷,返回各试卷题目所在区域</p>
- {% csrf_token %}
- {{ form_img.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- <div class="inline" style="margin-right: 25%;float: right;">
- <h3>答题卡分割(by_xml)</h3>
- <form action="/segment/sheetsmallbox/" method="post" enctype="multipart/form-data">
- <p>上传修正后的XML文件</p>
- {% csrf_token %}
- {{ form_xml.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- <div class="inline" style="margin-left: 25%;float: left">
- <h3>答题卡分割并显示</h3>
- <form action="/segment/sheet_detail_show/" method="post" enctype="multipart/form-data">
- <p>上传一张试卷,返回各试卷题目所在区域</p>
- {% csrf_token %}
- {{ form_img.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- <div class="inline" style="margin-right: 25%;float: right">
- <h3>套装答题卡分割</h3>
- <form action="/segment/multiple_sheet_detail/" method="post" enctype="multipart/form-data">
- <p>上传一张试卷,返回各试卷题目所在区域</p>
- {% csrf_token %}
- {{ form_img.as_p }}
- <input type="submit" value="上传"/><br>
- </form>
- </div>
- </body>
- </html>
|