mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 19:03:15 +08:00
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
{% extends 'base-layer.html' %}
|
||
{% load staticfiles %}
|
||
|
||
{% block css %}
|
||
<link rel="stylesheet" href="{%static 'plugins/select2/select2.min.css' %}">
|
||
<link rel="stylesheet" href="{% static 'js/plugins/layer/skin/layer.css' %}">
|
||
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap-datetimepicker.min.css' %}">
|
||
<link rel="stylesheet" href="{% static 'plugins/fileinput/fileinput.css' %}">
|
||
|
||
{% endblock %}
|
||
{% block main %}
|
||
<div class="box box-danger">
|
||
<form class="form-horizontal" id="addForm" method="post">
|
||
{% csrf_token %}
|
||
<div class="box-body">
|
||
<fieldset>
|
||
<div class="form-group has-feedback">
|
||
<div class="col-sm-12">
|
||
<div class="file-loading">
|
||
<input id="file_content" name="file_content" type="file" multiple="multiple"/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
<fieldset>
|
||
<div class="form-group has-feedback">
|
||
<label class="col-sm-2 control-label"></label>
|
||
<div class="col-sm-12">
|
||
<p class="text-red">同时最多可上传4个文件,支持文件格式:png", "jpg", "gif", "zip", "rar",大小不得超过10M</p>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
{% endblock %}
|
||
|
||
{% block javascripts %}
|
||
<script src="{% static 'plugins/fileinput/fileinput.js' %}"></script>
|
||
<script src="{% static 'plugins/fileinput/zh.js' %}"></script>
|
||
<script type="text/javascript">
|
||
|
||
//上传文件
|
||
|
||
$(document).on('ready', function() {
|
||
$("#file_content").fileinput({
|
||
language: "zh",
|
||
showUpload: true,
|
||
allowedFileExtensions: ["png", "jpg", "gif", "zip", "rar"],
|
||
uploadUrl: "{% url 'cmdb:eam-device-upload' %}",
|
||
uploadExtraData: {
|
||
'csrfmiddlewaretoken': '{{ csrf_token }}',
|
||
'device': '{{ device.id }}',
|
||
'upload_user': '{{ request.user.name }}',
|
||
},
|
||
maxFileCount: 4,
|
||
autoReplace: true,
|
||
maxFileSize: 10240,
|
||
});
|
||
});
|
||
|
||
</script>
|
||
|
||
{% endblock %} |