I had the same problem.

I think the problem is that you are referencing a non-existent (view)
function named 'viewer' in your urls.py. This wasn't a problem in
previous versions, but with the addition of the reverse url lookup,
non-existent views now cause problems.

What I gather is happening is that on the first (admin) request, all
urls and consequently views are introspected.  Since one or more of
the views (defined in the urls.py) don't exist an exception is
raised.  However, the results are cached and subsequent loading of the
page don't cause an error (but the links are now incorrect).

So check your urls.py and see if that clears up the problem.

-Curt

On Jan 27, 12:43 pm, paceman <[EMAIL PROTECTED]> wrote:
> I seem to be having a problem with the django Admin facility.  I have
> used it quite some time with no problems, however, I ran into a
> problem and it may relate to how I tried to solve some other
> problems.  So here is some background that may be important.
>
> Background:
> *****************************************************************
> Initially, I was using Django 0.96 in Debian, but I wanted to reduce
> the amount of code needed to be written by using Generic Views - in
> particular the Create / Update / Delete (CRUD) Generic Views.
>
> I found that using the 0.96 version did not facilitate automatic form
> creation (this is provided in newforms).  So, I wanted to try what was
> described in the Django Book - Appendix D.  I found Patch #3639 which
> modifies the above Generic View for use with newforms - and hence
> automatic form generation.  It worked to a degree, but it did not
> produce select boxes in the form for some reason.
>
> I installed the Django 0.97~svn6996-1 in Debian Experimental, then
> applied Patch #3639 to it, and the result was much better for the
> Generic View - select boxes are being rendered properly.  However, a
> niggling problem (unrelated to this problem) is that the model foreign
> key to the Admin User table is not rendering the User table in the
> Generic Update view - don't know how to do that yet (maybe you can't).
>
> Finally, I get to the problem that hopefully I can get some help
> with.  In progressing from 0.96 to 0.97 I carried patch #3185 with me
> - this allows the Admin facility to be available in the url 
> ashttp://mysite/myapp/admininstead ofhttp://mysite/admin.  I liked it
> because it related the admin to the application in the url - which is
> want the user sees.  The django default is to reference the admin in
> the project url.py, not in the app url.py.  I had moved it to the app
> and applied the patch.  It worked great in 0.96.  However, in 0.97
> when first accessed it fails with 'cannot find viewer in /mysite/
> myapp:
> ********************************************************************
> ViewDoesNotExist at /mysite/myapp/admin/
> Tried viewer in module mysite.myapp.views. Error was: 'module' object
> has no attribute 'viewer'
>
> Exception Location:     /var/lib/python-support/python2.4/django/core/
> urlresolvers.py in _get_callback, line 184
>
> Template error
>
> In template /var/lib/python-support/python2.4/django/contrib/admin/
> templates/admin/base.html, error at line 28
> ******************************************************************
> It refers to contrib/admin/templates/admin/base.html.  Specifically,
> the line (and 2   similar ones below it):
>
> <a href="{% url django.contrib.admin.views.doc.doc_index %}">{% trans
> 'Documentation' %}</a>
>
> If you refresh the url again, it does not fail, but you find that the
> Doc, Change Password, and Logout does not work.  The reason is that
> the url template tag does not fully find the url it only picks up /
> mysite/myapp/admin and misses the doc/ that should be on the end of
> it.
>
> When I looked up the code on the Django site for base.html, it refers
> to Revision 3091, and says it was last modified 2 years ago by hugo.
> I notice that the corresponding line, line 23 contains a different
> href, not using the url templatetag, but just 'doc/'.  I tried this
> modification, and the error dissappeared, but the Doc, Change
> Password, and Logout links only work in the top Admin page.  So, I
> know it is not really the solution.  I checked the code in 0.96, and
> that is also how the href is done - only thing is it works in 0.96
> regardless of which Admin page you are on.
>
> I realize that the svn versions of django are not guarenteed bug free
> - I tried to search for a similar bug, but could not find one.  I also
> checked out the most recent Django version using svn and still got the
> same problem.  Is anyone aware of this bug? Or, did I make some wrong
> assumptions in the above leading to a problem of my own making?  I
> know that the Django Book says that the url template tag is undergoing
> reconstruction - could this be negatively affecting the Admin
> facility?  That code is a bit of a mystery to me.
>
> I really appreciate any help offered.  I have used this forum once
> before with amazingly helpful responses.  Many thanks to those of you
> dedicating some of your valuable time to helping others.
--~--~---------~--~----~------------~-------~--~----~
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