Search Results

0
votes
2answers
318 views

Using string literals as parameters to template tags in Django templates

One of the things I find myself doing often is passing string literals as parameters to template tags or functions; for instance: {% url my-url 'my_param' %} Unfor …
4
votes
1answer
234 views

Serving gzipped content from django

I'm trying to serve a gzipped version of a text/html page in Django, but Firefox is telling me there's a content encoding error. NOTES: I realize this is not a best practice a …
1
vote

Interfacing web crawler with Django front end

If you insert your django project's app directories into sys.path, you can write standard Python scripts that utilize the Django ORM functionality. We have an /admin/ directory that contains scrip …
0
votes

Auto increment a value in Django with respect to the previous one

AutoField is the field type that Django uses for the model base class' 'id' property, but you can use it for additional autoincremented fields. I don't think you can do any formatting like …