CSS is used with URL:
http://localhost/logic/q01
The page is rendered as expected, with CSS. But, when the following
URL is invoked, the page is not rendered with CSS for some reason:
http://localhost/logic/q01/ABCDADF84093840384
If I understand Routes, "logic" is mapped as the controller and "q01"
as the action. In the second URL, "ABCDADF84093840384" is mapped as
the id. Why is the page NOT rendered with CSS if the id is appended
to the URL? Here's entries in Routes:
map.connect('/error/{action}', controller='error')
map.connect('/error/{action}/{id}', controller='error')
# CUSTOM ROUTES HERE
map.connect('home', '/', controller='home', action='index')
map.connect('/{controller}/{action}/{id}', controller='logic',
action='index')
map.connect('/{controller}/{action}')
map.connect('/{controller}')
Thanks.
Edgar