Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  3. <meta charset="utf-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <link rel="icon" href="http://getbootstrap.com/favicon.ico">
  10.  
  11. <title>Dashboard</title>
  12.  
  13. <!-- Bootstrap core CSS -->
  14. <link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
  15.  
  16. <!-- Custom styles for this template -->
  17. <link href="{% static 'css/dashboard.css' %}" rel="stylesheet">
  18. <link href="{% static 'css/theme.css' %}" rel="stylesheet">
  19.  
  20. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  21.  
  22. <!-- Font -->
  23. <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
  24.  
  25.  
  26. <script src="{% static 'js/ie-emulation-modes-warning.js' %}"></script>
  27.  
  28.  
  29. <!--<script src="{% static 'js/bootstrap-datepicker.js' %}"></script>-->
  30. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  31. <!--[if lt IE 9]>
  32. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  33. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  34. <![endif]-->
  35. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>
  36. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  37.  
  38. <link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
  39. <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
  40. <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  41. <!-- Javascript -->
  42.  
  43. <script type="text/javascript">
  44. $(function() {
  45. $( "#datepicker-8" ).datepicker({
  46. prevText:"click for previous months",
  47. nextText:"click for next months",
  48. showOtherMonths:true,
  49. selectOtherMonths: false,
  50. dateFormat: 'yy-mm-dd'
  51. });
  52. $( "#datepicker-9" ).datepicker({
  53. prevText:"click for previous months",
  54. nextText:"click for next months",
  55. showOtherMonths:true,
  56. selectOtherMonths: true,
  57. dateFormat: 'yy-mm-dd'
  58. });
  59. });
  60. </script>
  61.  
  62. </head>
  63. <body>
  64. <div class="col-md-4 sub">
  65. <div class="select_outer">
  66. <i class="fa fa-calendar"></i>
  67. <input type="text" id="datepicker-8">
  68. </div>
  69. </div>
  70. <div class="col-md-4 sub">
  71. <div class="select_outer">
  72. <i class="fa fa-calendar"></i>
  73. <input type="text" id="datepicker-9">
  74. </div>
  75. </div>
  76.  
  77. <script src="{% static 'js/jquery.min.js' %}"></script>
  78. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  79. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  80. <script src="{% static 'js/ie10-viewport-bug-workaround.js' %}"></script>
  81. <!-- Script for jquery animations -->
  82. <script src="{% static 'js/script.js' %}"></script>
  83. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement