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.
47 lines
1.7 KiB
47 lines
1.7 KiB
{% extends 'base.html' %} |
|
{% import 'bootstrap/wtf.html' as wtf %} |
|
|
|
{% block head %} |
|
{{ super() }} |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css"> |
|
{% endblock %} |
|
|
|
{% block app_content %} |
|
<h1>Create a new game</h1> |
|
<div class="row"> |
|
<div class="col-md-4"> |
|
{{ wtf.quick_form(form) }} |
|
</div> |
|
</div> |
|
{% endblock %} |
|
|
|
TODO: |
|
- maak time picker 24 uur based |
|
https://eonasdan.github.io/bootstrap-datetimepicker/Options/#locale+ |
|
- optie voor nu |
|
|
|
{% block scripts %} |
|
{{ super() }} |
|
<!-- TODO: Scripts downloaden naar repo? --> |
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script> |
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.min.js"></script> |
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js"></script> |
|
<script type="text/javascript"> |
|
$(function () { |
|
$('#datetimepicker1').datetimepicker({ |
|
useCurrent: false, //Important! See issue #1075 |
|
locale: 'en-gb' |
|
}); |
|
$('#datetimepicker2').datetimepicker({ |
|
useCurrent: false, //Important! See issue #1075 |
|
locale: 'en-gb' |
|
}); |
|
$("#datetimepicker1").on("dp.change", function (e) { |
|
$('#datetimepicker2').data("DateTimePicker").minDate(e.date); |
|
}); |
|
$("#datetimepicker2").on("dp.change", function (e) { |
|
$('#datetimepicker1').data("DateTimePicker").maxDate(e.date); |
|
}); |
|
}); |
|
</script> |
|
{% endblock %} |