Trying to implement a date-time input using Twitter Bootstrap, but unsure of the correct method...
Referencing this:
https://github.com/eternicode/bootstrap-datepicker and attempting to utilize the options available.
Previous attempt:
<link type="text/css" rel="stylesheet" href="{{ STATIC_URL }}/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href=""{{ STATIC_URL }}/css/datepicker.css">
<script>
$('#datepicker').datepicker({
format: 'mm-dd-yyyy'
});
</script>
<script src = "{{STATIC_URL}}js/Datepicker.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<label>Created:</label>
<input type="text" value ="06/11/2012"id="datepicker"/>
<br/><br/>
Seeking assistance in displaying the current date on the label instead of the manually entered date.
Although implementation is not functioning as expected, unable to identify the error...