Sophia
--
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/-/pZQOIyr8LKAJ.
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.
You might like to go to the django site: https://docs.djangoproject.com/en/1.3/
and go through the tutorial links. It takes a couple of hours, and is
well worth the effort to get a handle on how the pieces of Django fit
together.
But the task you mentioned in your post sounds like a javascript
project rather than something you would do on the server.
If you are also new to programming in python and want to learn more
about the language try the python-tutor mailing list
--
Joel Goldstick
django runs on the server. if you want to do some client processing
you need code running on the client, typically Javascript.
of course that code is served from a Django app, and modifying a
django-handled page and form, so the project in a whole is still 'done
with Django'.
--
Javier
Thanks all for helping, as I told I read that tutorial, but my supervisor said that I should do that with Django. He didn't mention about learning JavaScript, but is it impossible just with Django?
--
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/-/IRJ8PvQXRdEJ.
In this context the client is the browser.
>
> On Tuesday, March 13, 2012 1:54:00 PM UTC-7, Javier Guerra wrote:
>>
>> On Tue, Mar 13, 2012 at 3:37 PM, Sophia <b.mirsh...@gmail.com> wrote:
>> > Thanks all for helping, as I told I read that tutorial, but my
>> > supervisor
>> > said that I should do that with Django. He didn't mention about learning
>> > JavaScript, but is it impossible just with Django?
>>
>> django runs on the server. if you want to do some client processing
>> you need code running on the client, typically Javascript.
>>
>> of course that code is served from a Django app, and modifying a
>> django-handled page and form, so the project in a whole is still 'done
>> with Django'.
>>
>> --
>> Javier
>
On Tue, 13 Mar 2012 14:31:13 -0700 (PDT), Sophia
<b.mirsh...@gmail.com> declaimed the following in
gmane.comp.python.django.user:
> Thanks for answering, I meant supervisor for my internship. Actually it's a
> task that should be done for my internship.
> This is exactly what he said: clicking on one box to generate new boxes and
> then we should enter data into them.
> He just ask us to learn Python, and Django besides HTML and CSS to complete
> the work!
>
"and then we should enter data into them"
is the key phrase...
You are basically describing a form containing something like a
"submit" /button/ (not box) where clicking on the button causes the
server to present another page which is a form with text entry fields
(and probably another "submit" button to send the filled in form back to
the server so the data can be saved somewhere)
{Note: the first "submit" button doesn't even need to be a button -- a
simple graphic image tied to an <a href=...> link would be sufficient
for something that doesn't need to send any particular data}
--
Wulfraed Dennis Lee Bieber AF6VN
wlf...@ix.netcom.com HTTP://wlfraed.home.netcom.com/
--
You received this message because you are subscribed to the Google Groups "Django users" group.