I'm using the generic CreateView like:

#urls.py

from django.conf.urls.defaults import *
from django.views.generic import CreateView
from content.models import myModel

urlpatterns = patterns('myApp.views',
    (r'myCreate/$', CreateView.as_view(model=myModel)),
)

With a mymodel_form.html template like:

<form method="post" action="">
{% csrf_token %}
  {{ form.as_p }}
  <input type="submit" value="Submit" />
</form>

When I submit my form, the new object is created but I get the error

ImproperlyConfigured at ...

No URL to redirect to. Either provide a url or define a get_absolute_url method on the Model.

How can I specify the url to redirect on success ?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Have you tried passing in success_url? e.g.

CreateView.as_view(model=myModel, success_url="/success/")

or if you want to redirect to a named view:

CreateView.as_view(model=myModel, success_url=reverse('success-url'))
link|improve this answer
That's what I forgot. Thank you – Pierre de LESPINAY Jun 7 '11 at 14:20
1  
@Glide No problem. The key was that success_url wasn't documented under CreateView, but under the ModelFormMixin. Django documentation can be hard to get through sometimes. – NickAldwin Jun 7 '11 at 14:21
Ok got it, that's right, the doc is really nice but there are so many concepts here... Not always evident to find things – Pierre de LESPINAY Jun 7 '11 at 14:39
1  
@Glide It can take a bit of searching. By the way, don't forget to upvote when an answer is useful. Thanks! – NickAldwin Jun 7 '11 at 14:40
feedback

you can also try to define get_absolute_url in your models. For example

class Something(models.Model):
    name = models.CharField(max_length=50, verbose_name='name')

    class Meta:
             pass

    def get_absolute_url(self):
            return u'/some_url/%d' % self.id 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.