Search Results

11
votes
9answers
1k views

Flattening a shallow list in python

On a django project, I was hoping to flatten a shallow list with a nested list comprehension, like this: [image for image in menuitem.image_set.all() for menuitem in list_of_menuite …
1
vote
6answers
1k views

Adding a generic image field onto a ModelForm in django

I have two models, Room and Image. Image is a generic model that can tack onto any other model. I want to give users a form to upload an image when they pos …
3
votes

How to ensure user submit only english text

Google has a javascript API that has an implementation of language detection. I've only play tested with it, never used it in production. …
1
vote

Setting up a Python web development environment on OSX

I run a linux virtual machine on my mac laptop, this allows me to keep my development environment and production environments perfectly in sync (and make snapshots for easy experimentation / rollba …
8
votes

Cleaner way to query on a dynamic number of columns in Django?

Build the query as a dictionary and use the ** operator to unpack the options as keyword arguments to the filter method. op_kwargs = {} for op in self.cleaned_data['options']: o …
10
votes

Beginner: Trying to understand how apps interact in Django

Take a look at django's built-in contenttypes framework: django.co …
3
votes

How to localize Content of a Django application

I would suggest checking out django-multilingual. It is a third party app that lets you define translation fields on your …
3
votes

Django: How can I use my model classes to interact with my database from outside Django?

Depending on your specific needs, django-command-extensions might save you a bit of time. To …
9
votes

Can I access constants in settings.py from templates in Django?

Django provides access to certain, frequently-used settings constants to the template such as settings.MEDIA_URL and some of the language settings if you use django's built in generic …
0
votes

Custom Markup in Django

Django comes with a built-in contrib app that provides filters to display data using several different markup languages, including textile and markdown. See …
1
vote

Interesting Python system utilities you have made?

I wrote a script that uses rsync to backup a remote directory tree on a local drive, and then starts rotating the backups after an arbitrary number of runs using only the deltas (sorta like time ma …
2
votes

django and executing a separate .py to manipute a database

You might also check out django-extensions, which has a built-in manage.py extension called "runscript" that execu …