Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 403251
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:11:59+00:00 2026-05-12T17:11:59+00:00

I have an app called CMS with Category and Article. Quite simple. I overwrite

  • 0

I have an app called CMS with Category and Article. Quite simple.

I overwrite app_index.html to enable ajax-based drag-n-drop ordering and to move articles from one category to another.

Now I would like to redirect after saving/deleting an article or a category to cms’ app_index.html instead of the model’s change_list.html. How can this be done?

Thanks

class Category(models.Model):
    order = models.IntegerField()
    title = models.CharField(max_length=100)
    text  = models.TextField()

class Article(models.Model):
    published  = models.BooleanField(default=None)
    images     = generic.GenericRelation(Photo)
    category = models.ForeignKey(Category)
    title = models.CharField(max_length=100)
    text  = models.TextField()
    order = models.IntegerField(blank = True, null = True)

Daniel’s answer did half the job: Redirect after changing the articles and categories.


A not very elegant solution: Redirection in urls.py

def redirect_cms(response):
    return HttpResponseRedirect('/admin/cms/')

urlpatterns += patterns('',
    (r'^admin/cms/article/$',redirect_cms),

any other idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:11:59+00:00Added an answer on May 12, 2026 at 5:11 pm

    In your admin subclass, override the response_change and/or the response_add methods. These are called after the admin form is saved ,for existing and new instances respectively, and are responsible for returning the HttpResponseRedirect that currently takes you to the change_list page.

    Take a look at the original code in django.contrib.admin.options to see what you need to do.

    Edit: There are two ways a deletion can take place: as a result of an action on the change_list page, in which case you can use the response_action method; or as a result of a deletion on the change form, in which case unfortunately there is no equivalent method. One way of dealing with this might be to override the change_form.html template for the app, and remove the deletion link, so that the only way to delete is via the changelist. Not ideal by any means.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 301k
  • Answers 301k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Your image is more than likely not being reloaded because… May 13, 2026 at 8:12 pm
  • Editorial Team
    Editorial Team added an answer If your OTL task needs to load a sorted list… May 13, 2026 at 8:12 pm
  • Editorial Team
    Editorial Team added an answer I found out the I need to send empty braces… May 13, 2026 at 8:12 pm

Related Questions

I'm new to Django and I'm trying to learn it through a simple project.
Is there any way to group the models in django admin interface? I currently
I have an app holding an array of instances of a class called SwimmingPool.
I have an app that converts binary file into ASCII file. With profiler I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.