> That looks good, but I think what I want it to do is create_or_update.
> Is there a logical way to do that?

If you are using the login_required decorator, then your view should
already have the current user available to it as part of the request
object. You shouldn't have to worry that the user object doesn't
exist. (If it doesn't, then something is wrong with your view)

@login_required
def index(request):
    # If they did a post, then submit the data & redirect
    # the user to modules
    if request.method == 'POST':
        form = twitterForm(request.POST)
        if form.is_valid():
            #Then we save the data to the database
            form = form.cleaned_data
            t = TwitterModel(
                user=request.user,
                twitter_username=form['twitter_username'],
            )
            t.save()
            return HttpResponseRedirect('/modules/')

    # If they did not do a post, show them the form.
    else:
        form = twitterForm()

    return render_to_response('twitter/index.html', {'form': form})


If you want to debug and see the user object, you could do something
like this:

@login_required
def index(request):
    if request.method == 'POST':
        assert False, request.user
    ...


Hope this helps.

-- Scott


--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to