Mmm... you are writting your current view. So just add a variable
"has_voted" that will be true if the IP (or user) has voted.

I don't know if you are using the poll version of the tutorial or
mine. If you are using the version of the tutorial, you might be
interested in this, where I added support to allow people to vote only
once:
http://www.guindilla.eu/blog/2006/11/07/improved-poll-aplication-django/

If you are using one of those, then it is trivial to add the
"has_voted" variable depending of if the user or IP has votted. If you
need help, send some code and I'll try to help.

Then, in the template I would add an {% if has_voted %} and show the
results if this is true, and the poll otherwise.

Another thing, instead of using a hidden path, you might want to use
the referer field in the request variable. In one calendar app I've
made, I use:
return HttpResponseRedirect(request.META['HTTP_REFERER'])

But maybe is this considered as bad practice? I am not familiar with
such things and I've to improvise more often than not on such
problems. it works perfectly for me in any case.

Hope it helps,

G

On 11/19/06, ringemup <[EMAIL PROTECTED]> wrote:
>
> Guillermo -
>
> Thanks again for your help - this is working really well.
>
> I have a followup question - I don't know if you can help with this:
>
> My custom tag embeds the current path as a hidden field in the poll
> voting form, and I've modified my vote view to redirect to that path if
> it's included in the POST hash.  Is there any way to pass a variable to
> the page that it's returning to indicate that it should now show the
> results instead of the form?
>
> thanks!
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to