I have a option section in my webpage just display the names of some machines
doing this tutorial I was able to get all the lines that appear in the "option" tag of my html.
and I can get a big string that I can separate by comas.
I was going to put that big long string as the last part of the url and use it with a get method such:
url: mywebsite/myapp/?options=txt
def profile_page(request):
options = request.GET.get("options", "")
#here parse the options string
is this something recommended? or is a better smarter way?
thanks =)
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7e6052c5-9ce9-4a13-9eba-c0eb6b9fd745%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment