How does your view looks like?

Etienne


Le 2018-02-19 à 09:18, prince gosavi a écrit :
Hi,

I am building a simple django application for user feedback. And I have created a form for that purpose.

Here is the snippet:
|
# my_app/forms.py

fromdjango importforms
importdatetime
classUserQueryForm(forms.Form):
    date =forms.DateField(initial=datetime.date.today)# need help
    username =forms.CharField(label='Username:',max_length=15)
    mobilenos =forms.CharField(max_length=10,label='Mobile Nos')

|

And here is my template:
|
<!--my_app/templates/my_app/form.html-->
<formaction=""method="POST">
    {% csrf_token %}
<h1>Date:</h1>
    {{ form.date }}
    {{ form.username.label}}
    {{ form.username }}
<br/>
    {{ form.mobilenos.label}}
    {{ form.mobilenos}}
<br/>
<inputtype="submit"value="Submit">
</form>
|

I would like to initialize the *date *so that it is automatically set to today's date when the page loads.
All suggestions are welcomed.

Regards,

Rajkumar
--
You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com <mailto:django-users+unsubscr...@googlegroups.com>. To post to this group, send email to django-users@googlegroups.com <mailto:django-users@googlegroups.com>.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a5a9a34f-f21e-48fc-bc3c-7ec25c73b017%40googlegroups.com <https://groups.google.com/d/msgid/django-users/a5a9a34f-f21e-48fc-bc3c-7ec25c73b017%40googlegroups.com?utm_medium=email&utm_source=footer>.
For more options, visit https://groups.google.com/d/optout.

--
Etienne Robillard
tkad...@yandex.com
https://www.isotopesoftware.ca/

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f43e5240-32c4-59a3-7a5e-89129fc6a169%40yandex.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to