django - {% load staticfiles %} - Does it pre-load all recursively or on demand? -
in django i'm curious concerning {% load staticfiles %} template directive.
in static files have sass directory, , sass in turn can have cache gets quite large. i'm not inquiring of 'best practice' though, in case files pre-loaded or not?
if i'm using, instance, fonts, bootstrap, personal stylesheet, etc...is going load things i'm not using?
very curious this. don't want use more resources needed.
you've misunderstood load
tag does. make template tag library available template use: in case, "staticfiles" library includes definition of {% static %}
tag. without load statement, can't use tag.
it doesn't staticfiles - indeed can't, loading them matter browser, whatever in html.
Comments
Post a Comment