#25449: django.contrib.gis.admin is missing @register
-------------------------------+--------------------
     Reporter:  manelclos      |      Owner:  nobody
         Type:  Uncategorized  |     Status:  new
    Component:  GIS            |    Version:  1.8
     Severity:  Normal         |   Keywords:
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  1              |      UI/UX:  0
-------------------------------+--------------------
 This code:
 {{{
 from django.contrib.gis import admin

 @admin.register(MyModel)
 class MyModelAdmin(....)
     ...
 }}}

 Produces: AttributeError: 'module' object has no attribute 'register'

 Plain admin works ok:
 {{{
 from django.contrib import admin

 @admin.register(MyModel)
 class MyModelAdmin(....)
     ...
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/25449>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.2fb88ad4b3bcaa0454a03ab6f5e52214%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to