On 3/10/06, limodou <[EMAIL PROTECTED]> wrote:
> On 3/10/06, pbx <[EMAIL PROTECTED]> wrote:
> >
> > > I'm not test yet. I fount that in the source code.
> >
> > I recommend testing it before commenting further.
> >
>
> As my first post said, maybe I'm wrong. What I'v done just suply some
> advices including source code. If you don't want to look at that, just
> skip my post. It's ok!
>

This time I tried it, and it's just like what I said. You can try it as:

1. create a app name tags
2. set settings.py after admin app, just like:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',
    'django.contrib.markup',

    'apps.profile',
    'apps.woodlog',

    'public.apps.account',
    'public.apps.comment',
    'public.apps.tags',  #------------------------------>this app is after admin
    'public.apps.test',
    'public.apps.easyform',

)

3. create testing template for change_form.html, the directories just like:

/templatespath/admin/tags/change_form.html

And make it an empty file just for testing.

4. change INSTALLED_APPS as:

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates".
    # Always use forward slashes, even on Windows.
    './templates',
    './woodlog/tamplates',
    './public/apps/account/templates',
    './public/apps/easyform/templates',
    './apps/uprofile/templates',
    '/templatespath', #<--------------------add this
)

5. sign in admin

click tags add button
then the page is empty

So I just want to say maybe I'm not testing for this before, but I
only want to tell you some clues, and hope these clues can help you,
why not try it yourself and just complain to me?

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-developers
-~----------~----~----~----~------~----~------~--~---

Reply via email to