Opened 16 years ago

Last modified 16 years ago

#9088 closed

Problem with svn version 9019 — at Initial Version

Reported by: Souparnika Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi,

I am trying to use latest svn version (revision 9019) from django. When I try the admin url I am getting an error.

It is copied below.

Template error

In template c:\python25\lib\site-packages\django\contrib\admin\templates\admin\base.html, error at line 25
Caught an exception while rendering: Could not import registration.views. Error was: cannot import name oldforms

15 <!-- Container -->
16 <div id="container">
17
18 {% if not is_popup %}
19 <!-- Header -->
20 <div id="header">
21 <div id="branding">
22 {% block branding %}{% endblock %}
23 </div>
24 {% if user.is_authenticated and user.is_staff %}
25 <div id="user-tools">{% trans 'Welcome,' %} <strong>{% firstof user.first_name user.username %}</strong>. {% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}<a href="{{ root_path }}password_change/">{% trans 'Change password' %}</a> / <a href="{{ root_path }}logout/">{% trans 'Log out' %}</a>{% endblock %}</div>
26 {% endif %}
27 {% block nav-global %}{% endblock %}
28 </div>
29 <!-- END Header -->
30 {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans 'Home' %}</a>{% if title %} &rsaquo; {{ title }}{% endif %}</div>{% endblock %}
31 {% endif %}
32
33 {% if messages %}
34 <ul class="messagelist">{% for message in messages %}<li>{{ message }}</li>{% endfor %}</ul>
35 {% endif %}

Please let me know regarding this.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top