OK. So for posterity's sake, I wanted to note that I solved this
problem, and it was completely my own embarrassingly stupid oversight
(is there a Jargon acronym for telling yourself to read your own
source more closely?).

The problem was not the project layout or Django code, but the link in
the html page to the stylesheet.

This link....
          <link rel="stylesheet/css" href="/static/css/base_test.css"
type="text/css" />
...had an incorrect attribute:
         rel="stylesheet/css" should be just rel="stylesheet"

The correct link:
        <link rel="stylesheet" href="/static/css/base_test.css"
type="text/css" />

I must have looked at that link dozens of times until I noticed it.
Apologies for cluttering the list with my brainlapse.

--~--~---------~--~----~------------~-------~--~----~
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