summaryrefslogtreecommitdiff
path: root/arduino_blog/templates/submit-cfp.html
diff options
context:
space:
mode:
authorprashantsinalkar2020-03-02 15:31:11 +0530
committerprashantsinalkar2020-03-02 15:31:11 +0530
commit506ca0426cf24446317b4951bacd110b138d8f3a (patch)
tree34792c2b74bbf9cce78e4818bef73fb9e4794e4b /arduino_blog/templates/submit-cfp.html
parent3198b009bf9eb606200e2bdd03e8c48c169619e4 (diff)
downloadarduino_projects_website-506ca0426cf24446317b4951bacd110b138d8f3a.tar.gz
arduino_projects_website-506ca0426cf24446317b4951bacd110b138d8f3a.tar.bz2
arduino_projects_website-506ca0426cf24446317b4951bacd110b138d8f3a.zip
added default date
Diffstat (limited to 'arduino_blog/templates/submit-cfp.html')
-rw-r--r--arduino_blog/templates/submit-cfp.html16
1 files changed, 15 insertions, 1 deletions
diff --git a/arduino_blog/templates/submit-cfp.html b/arduino_blog/templates/submit-cfp.html
index f30b465..988bc60 100644
--- a/arduino_blog/templates/submit-cfp.html
+++ b/arduino_blog/templates/submit-cfp.html
@@ -19,7 +19,6 @@
<span style="color:red;">*</span>:
</label>
<input class="form-control" id="your_name" type="text" name="your_name" value="{{ user.first_name }} {{ user.last_name }}" disabled>
-
</div>
<div class="form-group">
<label for="about_the_author">About the author
@@ -48,6 +47,13 @@
<label for="attachment">Attachments:</label>
{% render_field proposal_form.attachment %}
</div>
+ <div class="form-group">
+ <label for="abstract">Expected completion date (Aprox. 1 month)
+ <span style="color:red;">*</span>:
+
+ </label>
+ {% render_field proposal_form.completion_date %}
+ </div>
<div class="form-inline">
<div class="form-check">
{% render_field proposal_form.terms_and_conditions %}
@@ -69,4 +75,12 @@
</div>
</section>
</br>
+<script>
+ $(function () {
+ $("#datetimepicker1").datetimepicker({
+ format: 'DD/MM/YYYY',
+ defaultDate: "11/1/2013",
+ });
+ });
+</script>
{% endblock %}