Search Results

10
votes
5answers
733 views

Serving dynamically generated ZIP archives in Django

How to serve users a dynamically generated ZIP archive in Django? I'm making a site, where users can choose any combination of available books and download them as ZIP archive. I'm worried …
0
votes

Does Django have HTML helpers?

Here is a list of all template tags and filters built into Django. Django core doesn't have as much HTML he …
6
votes

Django -vs- Grails -vs- ???

However it's written in Python which means there's little real support in the way of deployment/packaging, debugging, profilers and other tools that make building and maintai …
5
votes

How to create a triple-join table with Django

zacherates writes: I'd model Role as an association class between Users and Roles (...) I'd also reccomed this solution, but you can al …
-1
votes

Managing large user databases for single-signon.

You can always implement your own OpenID server. There is already a Python libr …
16
votes

Change the width of form elements created with ModelForm in Django

The easiest way for your use case is to use CSS. It's a language meant for defining presentation. Look at the code generted by form, take note of ids for fields that interest you, …
6
votes

Union and Intersect in Django

Please don't reinvent the wheel and use django-tagging application which was made exactly for your use case. It can do all quer …
10
votes

Book and tutorial recommedations for Django 1.0

If you prefer screencasts to written documentation, there is a new serie of tutorials "Django From The Ground Up" on This Week in D …