You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.3 KiB
52 lines
2.3 KiB
<!DOCTYPE HTML>
|
|
{% load staticfiles %}
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Force latest IE rendering engine or ChromeFrame if installed -->
|
|
<!--[if IE]>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<![endif]-->
|
|
<meta charset="utf-8">
|
|
<title>Django Jquery file upload demo</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- Bootstrap styles -->
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
|
|
<!-- Generic page styles -->
|
|
<link rel="stylesheet" href="{% static 'file_upload/css/style.css' %}">
|
|
<!-- blueimp Gallery styles -->
|
|
<link rel="stylesheet" href="{% static 'file_upload/css/blueimp-gallery.min.css' %}">
|
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
|
<link rel="stylesheet" href="{% static 'file_upload/css/jquery.fileupload-ui.css'%}">
|
|
<!-- CSS adjustments for browsers with JavaScript disabled -->
|
|
<noscript><link rel="stylesheet" href="{% static 'file_upload/css/jquery.fileupload-ui-noscript.css'%}"></noscript>
|
|
|
|
<!-- Shim to make HTML5 elements usable in older Internet Explorer versions -->
|
|
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
|
</head>
|
|
<body>
|
|
<div class="navbar navbar-default navbar-fixed-top">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-fixed-top .navbar-collapse">
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="https://github.com/sigurdga/django-jquery-file-upload">Django jQuery File Upload</a>
|
|
</div>
|
|
<div class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li class="active"><a href="#">Demo</a></li>
|
|
<li><a href="https://github.com/sigurdga/django-jquery-file-upload">Source Code</a></li>
|
|
<li><a href="https://github.com/blueimp/jQuery-File-Upload/wiki">Documentation</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% block content %}
|
|
<h1>No content set</h1>
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|
|
|