2015-04-20 02:12:11 +00:00
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
{% load mytags %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% include 'nav_cat_bar.html' %}
|
2015-11-05 16:21:59 +00:00
|
|
|
|
<style>
|
|
|
|
|
table {
|
|
|
|
|
display: table;
|
|
|
|
|
border-collapse: separate;
|
|
|
|
|
border-spacing: 2px;
|
|
|
|
|
border-color: grey;
|
|
|
|
|
}
|
2015-04-20 02:12:11 +00:00
|
|
|
|
|
2015-11-05 16:21:59 +00:00
|
|
|
|
tbody {
|
|
|
|
|
display: table-row-group;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
border-color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table.border {
|
|
|
|
|
border: 1px solid #999;
|
|
|
|
|
}
|
|
|
|
|
.table.hovered tbody tr:hover {
|
|
|
|
|
background-color: rgba(28,183,236,.1)
|
|
|
|
|
}
|
|
|
|
|
tr {
|
|
|
|
|
display: table-row;
|
|
|
|
|
vertical-align: inherit;
|
|
|
|
|
border-color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td, th {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#hosts_list {
|
|
|
|
|
background-color: white;
|
|
|
|
|
background-image: none;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
color: inherit;
|
|
|
|
|
display: block;
|
|
|
|
|
right: 23px;
|
|
|
|
|
left: 23px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2015-04-20 02:12:11 +00:00
|
|
|
|
<div class="wrapper wrapper-content animated fadeIn">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="ibox float-e-margins">
|
|
|
|
|
<div class="ibox-title">
|
|
|
|
|
<h5>上传文件</h5>
|
|
|
|
|
<div class="ibox-tools">
|
|
|
|
|
<a class="collapse-link">
|
|
|
|
|
<i class="fa fa-chevron-up"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
|
|
|
|
|
<i class="fa fa-wrench"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<ul class="dropdown-menu dropdown-user">
|
|
|
|
|
<li><a href="#">Config option 1</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li><a href="#">Config option 2</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<a class="close-link">
|
|
|
|
|
<i class="fa fa-times"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ibox-content">
|
2015-11-05 16:21:59 +00:00
|
|
|
|
<div>
|
2015-04-20 02:12:11 +00:00
|
|
|
|
<form id="my-awesome-dropzone" class="dropzone" action="#">
|
|
|
|
|
<div class="dropzone-previews">
|
2015-11-05 16:21:59 +00:00
|
|
|
|
<input id="hosts" name="hosts" type="text" class="form-control" required="不能为空"
|
|
|
|
|
placeholder="输入主机地址,逗号隔开,确保你有输入主机地址的权限" size="80%">
|
2015-11-22 14:20:55 +00:00
|
|
|
|
<select name="assetgroup" data-placeholder="请选择资产组" class="chosen-select form-control m-b" multiple tabindex="2">
|
|
|
|
|
{% for asset_group in asset_groups %}
|
|
|
|
|
<option value="{{ asset_group.name }}">{{ asset_group.name }}</option>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
2015-11-05 16:21:59 +00:00
|
|
|
|
|
|
|
|
|
{# <div id="hosts_list" style="position:absolute;display: none;z-index:999;">#}
|
|
|
|
|
{# TODO: by liuzheng#}
|
|
|
|
|
{# <table class="table hovered border ">#}
|
|
|
|
|
{# <tbody style="background-color: white">#}
|
|
|
|
|
{# <tr>#}
|
|
|
|
|
{# <td tabindex="2"><a>aaa</a></td>#}
|
|
|
|
|
{# </tr>#}
|
|
|
|
|
{# <tr>#}
|
|
|
|
|
{# <td tabindex="2"><a>aaa</a></td>#}
|
|
|
|
|
{# </tr>#}
|
|
|
|
|
{# <tr>#}
|
|
|
|
|
{# <td tabindex="2"><a>aaa</a></td>#}
|
|
|
|
|
{# </tr>#}
|
|
|
|
|
{# <tr>#}
|
|
|
|
|
{# <td tabindex="2"><a>aaa</a></td>#}
|
|
|
|
|
{# </tr>#}
|
|
|
|
|
{##}
|
|
|
|
|
{# </tbody>#}
|
|
|
|
|
{# </table>#}
|
|
|
|
|
{# </div>#}
|
2015-04-20 02:12:11 +00:00
|
|
|
|
</div>
|
|
|
|
|
<button type="submit" class="btn btn-primary pull-right">全部上传</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="m text-right"><small>上传文件到后端服务器的/tmp下,请注意查看</small> </div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
|
|
Dropzone.options.myAwesomeDropzone = {
|
|
|
|
|
|
|
|
|
|
autoProcessQueue: false,
|
|
|
|
|
uploadMultiple: true,
|
|
|
|
|
parallelUploads: 100,
|
|
|
|
|
maxFiles: 100,
|
|
|
|
|
url: '/file/upload/',
|
|
|
|
|
|
|
|
|
|
// Dropzone settings
|
|
|
|
|
init: function() {
|
|
|
|
|
var myDropzone = this;
|
|
|
|
|
|
|
|
|
|
this.element.querySelector("button[type=submit]").addEventListener("click", function(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
myDropzone.processQueue();
|
|
|
|
|
});
|
|
|
|
|
this.on("sendingmultiple", function() {
|
|
|
|
|
});
|
|
|
|
|
this.on("successmultiple", function(files, response) {
|
|
|
|
|
alert(response)
|
|
|
|
|
});
|
|
|
|
|
this.on("errormultiple", function(files, response) {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-05 16:21:59 +00:00
|
|
|
|
});
|
|
|
|
|
{# $("#hosts")[0].onfocus = function () {#}
|
|
|
|
|
{# TODO: by liuzheng#}
|
|
|
|
|
{# $("#hosts_list").show()#}
|
|
|
|
|
{# };#}
|
|
|
|
|
{# $("#hosts")[0].focusout = function () {#}
|
|
|
|
|
{# $("#hosts_list").hide()#}
|
|
|
|
|
{# };#}
|
2015-04-20 02:12:11 +00:00
|
|
|
|
$('#my-awesome-dropzone').validator({
|
|
|
|
|
timely: 2,
|
|
|
|
|
theme: "yellow_right_effect",
|
|
|
|
|
fields: {
|
|
|
|
|
"hosts": {
|
|
|
|
|
rule: "required",
|
|
|
|
|
tip: "输入上传的Host",
|
|
|
|
|
ok: "",
|
|
|
|
|
msg: {required: "必须填写!"}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
valid: function(form) {
|
|
|
|
|
form.submit();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|