Ticket #8577: patch.diff

File patch.diff, 1.6 KB (added by evenrik, 16 years ago)
  • django/contrib/admin/sites.py

     
    386386                            'admin_url': '%s/' % model.__name__.lower(),
    387387                            'perms': perms,
    388388                        }
    389                     if app_dict:
    390                         app_dict['models'].append(model_dict),
    391                     else:
    392                         app_dict = {
    393                             'name': app_label.title(),
    394                             'app_url': '',
    395                             'has_module_perms': has_module_perms,
    396                             'models': [model_dict],
    397                         }
    398                     if not app_dict:
    399                         raise http.Http404('The requested admin page does not exist.')
     389                        if app_dict:
     390                            app_dict['models'].append(model_dict),
     391                        else:
     392                            app_dict = {
     393                                'name': app_label.title(),
     394                                'app_url': '',
     395                                'has_module_perms': has_module_perms,
     396                                'models': [model_dict],
     397                            }
     398        if not app_dict:
     399            raise http.Http404('The requested admin page does not exist.')
    400400        # Sort the models alphabetically within each app.
    401401        app_dict['models'].sort(lambda x, y: cmp(x['name'], y['name']))
    402402        context = {
Back to Top