Opened 19 years ago
Closed 10 years ago
#1805 closed defect (invalid)
'adminmedia' is not a valid tag library
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | critical | Keywords: | Template library django.templatetags.adminmedia |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Runing latest revison 2864
trying to go through tutorial 2
try to access admin pages
http://localhost:8000/admin/
got this error
TemplateSyntaxError at /admin/
'adminmedia' is not a valid tag library: Template library django.templatetags.adminmedia does not have a variable named 'register'
...
Template error
In template C:\Python23\lib\site-packages\django\contrib\admin\templates\admin/login.html, error at line 4
Change History (8)
comment:1 by , 19 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
Component: | Admin interface → Documentation |
---|---|
Keywords: | Template library django.templatetags.adminmedia added |
milestone: | → Version 1.0 |
priority: | normal → high |
Resolution: | invalid |
Severity: | normal → critical |
Status: | closed → reopened |
Version: | → SVN |
So, this bug in documentation?
PS. I've stumbled on this bug using Django r4218, win32, python 2.4.3, going through tutorial.
comment:3 by , 18 years ago
Resolution: | → invalid |
---|---|
Status: | reopened → closed |
Please ask tech-support questions on the django-users mailing list.
follow-up: 6 comment:5 by , 15 years ago
this is not a bug. You schould add thiese to your INSTALLED_APPS:
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', }
comment:6 by , 10 years ago
Easy pickings: | unset |
---|---|
UI/UX: | unset |
Replying to bartosak:
this is not a bug. You schould add thiese to your INSTALLED_APPS:
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', }
I'm using django 1.6, and I'm having the same problem.
Here's my INSTALLED_APPS variable:
INSTALLED_APPS = (
'admin_tools',
'admin_tools.theming',
'admin_tools.menu',
'admin_tools.dashboard',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
'south',
'servidor',
'agendador',
)
I got exactly the same applications you're citing, and the problem still occurs.
Has this been tested on django 1.6? Doesn't look like so. In fact, 'adminmedia' has been deprecated since 1.4, but you're still using it.
Are you really sure this isn't a bug?
comment:8 by , 10 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
adminmedia
is no more, see https://docs.djangoproject.com/en/dev/releases/1.4/#django-contrib-admin
Please use the ticket system for functionality improvements or bug reports -- not for tech-support.