django-apps

Django South: Creating schemamigration for more than one app

I'M using django south on a bigger project, the only thing I don't like about it, that you can't create schemamigrations for all of your apps at once (I have a lot of apps that inherit from the same abstract model, if I change that base model there are alot of apps to migrate) - thought you can actually migrate all of them at once (usin...

Django apps equivalent to Drupal's CCK and Views modules?

Are there any Django apps equivalent to Drupal's Views and CCK modules? I find Django much more flexible and logically organized than Drupal. But I think Drupal's Views and CCK modules are killer apps. They let the webmaster very rapidly to build new data models and queries through GUI without touching the code. These modules are very u...

Available Django apps listing?

I'm learning django and I love the ease of plugging in a 3rd party app (like django-registration). Is there a site listing available 3rd party Django apps? I know I can search google code, github or bitbucket, but is there a more organized, django-specific resource out there? Maybe with reviews or ratings? ...

Dynamic Django Application Creation Based On a SQL / CSV file

Is there any django application that can create other apps merely based on a sql / csv file provided that a default template is found for the new applications. ...

What are good examples of things that should be turned into Django Apps

I've noticed there's a lot of confusion about what "app" means in Django, due in no small part to the documentation only explaining this abstract concept with more abstraction. ( http://docs.djangoproject.com/en/dev/intro/tutorial01/ ) What are some concrete examples of things that should be turned into apps? ...

HowTo Install the Django emailauth App into a New Project

Hello, I'm a Django newbie and am interesting in understanding how to install the EmailAuth app into my new project: http://github.com/redvasily/django-emailauth Seems like Django apps are meant to be plug in play so I must be missing something.... Here's what I tried. I created a new project copied the emailauth directory over Updat...

django-photologue upload_to

Hi all. I have been playing around with django-photologue for a while, and find this a great alternative to all other image handlings apps out there. One thing though, I also use django-cumulus to push my uploads to my CDN instead of running it on my local machine / server. When I used imagekit, I could always pass a upload_to='whatev...

Django friends setup questions

Hi. I am trying to use django-friends in my app, with no luck. This app is not well documented and I cannot seem to find any real information about it out there. Has anyone used this app in their project before? Something that is not a PINAX project. Any links or ideas will be appreciated. ...

trying to integrate some apps to my project

After finishing the core functionalities of my project it's time to begin with other secundary but important things. I've something like the following models.py file: class Category(models.Model): name = models.CharField(max_length=30) class Transaction(models.Model): name = models.CharField(max_length=30) description =...

django image storage cdn

Hi. I have been using rackspace CDN for the last few months with django-imagekit and django-cumulus. And I am not really happy with the results. I seem to get load of errors because of timeouts etc. File "/www/django_test1/omu2/src/python-cloudfiles/cloudfiles/connection.py", line 347, in get_container return Container(self, cont...

How to keep all my django applications in specific folder

I have a Django project, let's say "project1". Typical folder structure for applications is: /project1/ /app1/ /app2/ ... __init__.py manage.py settings.py urls.py What should I do if I want to hold all of my applications in some separate folder, 'apps' for example? So th...

Satchmo: enhancing custom product module to enable file upload

Hi, I am using the Django-based e-commerce framework Satchmo. I need to make an enhancement to the store, so that the custom product module can accept file upload as one of the order inputs. I have been able to display the file upload input through the right template; I would like to know what minimum change should be done to the cart h...

using django-easy_thumbnails from view

Hi. easy_thumbnails is a big help when making models or views for thumbnails. I am using the templatetag (via template, not via model) and easy_thumbnails creates sucessfully the thumbnail files. what happen when I want to use easy_thumbnails via view, not model o templatetag (the rendering of the images is via ajax, and django will ...

Django url image extraction like facebook

Does anybody know if there is a pluggable app that you can use to achieve url like image extraction for Django? ...

Django friendship in messages compose

Hi. I am using django-friends and django-messages. I have modified my custom compose form to pull the following information, myfriends and also display their fullnames instead of just usernames. One problem I have is that I cannot seem to access myself as a signed in user, to complete the query, I have to hard code it. class MyCompos...