--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/uShdSiAgUvEJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
--
python official website will be good start
On Wed, Mar 14, 2012 at 11:44 PM, Fady Kamal <fady.el...@gmail.com> wrote:
Hello i am new to django and i've completed the Polls app tutorial sucessfully,and what i want to do now FROM THE USER SIDE is the following :1-create poll.2-delete poll.3-edit the question in a specific poll.4-add a choice to the poll.5-remove a choice from a poll.i don't have knowledge in python but i learn quickly and i know java wellso what do you suppose i shall do ?,any tutorials or any helpful links ?
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/uShdSiAgUvEJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
that's exactly what was suggested: go to the Django site and do the
tutorial. incidentally, most of the exercises are about a poll
application
--
Javier
Fady: I would take a look at the forms section of the docs:
https://docs.djangoproject.com/en/1.3/topics/forms/. No tutorials, but
plenty of example code. Also, look at the ModelForm:
https://docs.djangoproject.com/en/1.3/topics/forms/modelforms/#modelform.
_Nik