Hi,

On Fri, Sep 11, 2009 at 10:04 PM, Dan06 <dan.king...@yahoo.com> wrote:

>
> 1. Is there supposed to be only one 'view' (controller) file per
> application, with all the 'action' functions? Or can there be multiple
> different 'view' (controller) files for the same application? If the
> latter, how?
>
>
No, you can have multiple view modules per app. To do so, one can create a
'views' folder with a empty __init__.py file. Then,
you can have multiple views: views/foo.py , views/bar.py.
Although this is a possibility, I haven't seen this approach been used on
open source apps.



> 2. Does Django have dynamic loading of stylesheet and javascript files
> (as rails)?
>
>
You have to load yourself. You can use the MEDIA_URL context variable to
help you to not hardcode paths. Like this:
<script type="text/javascript" src="{{ MEDIA_URL
}}/js/jquery-1.3.2.js"></script>

HTH.

-- 
Tiago Serafim

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