On Sep 8, 2:57 pm, Daniel Roseman <[EMAIL PROTECTED]>
wrote:
> On Sep 8, 8:14 pm, KillaBee <[EMAIL PROTECTED]>
> wrote:
>
>
>
> > I am editing my Admin.py to use the new ModelAdmin.  All my change has
> > no effect.  I wanted it to come up with all my app automaticlly.
>
> > I have this in my urls.py:
> > from django.contrib import admin
> > .
> > .
> > .
> > (r'^admin/(.*)', admin.site.root),
> > ==========================================
> > and my admin.py looks like this
>
> > from django.contrib import *
> > from intraweb.apps.models import timesheets
> > from django.contrib.FlatPages import FlatPageAdmin
>
> > class FlatPageAdmin(admin.ModelAdmin):
> >     fieldsets = (
> >         (None, {
> >             'fields': ('url', 'title', 'content', 'sites')
> >         }),
> >         ('Advanced options', {
> >             'classes': ('collapse',),
> >             'fields': ('enable_comments', 'registration_required',
> > 'template_name')
> >         }),
> >     )
>
> > admin.site.register(timesheets, timesheetsAdmin)
>
> > ====================================================
> > with this in my setting.py
>
> > INSTALLED_APPS = (
> >     'intraweb.apps',
> >     'django.contrib.admin',
> >     'django.contrib.contenttypes',
> >     'django.contrib.auth',
> >     'django.contrib.admin.templatetags',
> >     'django.contrib.sitemaps',
> > )
>
> > I see no reason why there shouldn't be any changes even if my admin.py
> > is blank I get the same thing.
>
> You haven't defined timesheetsAdmin in your admin.py. If you just want
> the default, rather than copying from flatpages you should just do:
>  admin.site.register(timesheets)
>
> although if you actually do want to customise it you will need to have
> an actual timesheetsAdmin class.
> --
> DR.

Should i be looking at the 10.0.0.20:8000/admin or something else.
--~--~---------~--~----~------------~-------~--~----~
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