I already send a response (and an apology of course!) to Malcolm, but
I will also add a more detailed explanation of my problem here.

What I'm trying to achieve is navigating between 2 html pages,
"General" and "Access". Both pages have the same tabbed navigation
menu, which is structured as follows:

  <div id="tabmenu">
    <ul>
      <li><a href="/general">General</a></li>
      <li id="current"><a href="/access">Access</a></li>
      <li><a href="">Process</a></li>
      <li><a href="">Visualize</a></li>
    </ul>
  </div>

So, the "li" elements contain the links, specified in the href part,
to the other pages, for example the "Access" page. To highlight the
current page, I added a CSS id "id="current"". I specified my urls.py
as follows, so (what I think) it would match the href request "/
access" or "/general".

URLS.PY---------------------------------------------------------------------------------

from django.conf.urls.defaults import *
from django.views.generic.simple import direct_to_template
from django.conf import settings

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^reco/', include('reco.foo.urls')),
    (r'^general', direct_to_template, {'template':
'project_gi.html'}),
    (r'^access',  direct_to_template, {'template':
'project_access.html'}),
    # Uncomment the admin/doc line below and add
'django.contrib.admindocs'
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    (r'^admin/(.*)', admin.site.root),
)

if settings.DEBUG:
    urlpatterns += patterns('',
        (r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),
    )

The result is when I click on the the tab "General" or "Access" it
should pick up and query the urls.py. But, I'm not even able to click
it. The page shows up fine, but without working links on the tabs. So,
navigating from general to access or the other way around doesn't
work. However, when I type the adress (e.g. http://localhost:8000/general)
in the adressbar of my browser, it works. So, I guess my error is
somewhere in the HTML file (?)

I hope my problem more clear now :) Thanks again for your time and any
help is appreciated!
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to