Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
4answers
3k views

Django Facebook Connect App Recommendation

I want to implement Facebook connect login for my Django site and I've checked the already existing apps. So far, I have found Django-Socialauth, django-socialregistration, and django-facebookconnect ...
11
votes
4answers
1k views

Beginner: Trying to understand how apps interact in Django

I just got done working through the Djano tutorials for the second time, and am understanding things much more clearly now. However, I'm still unclear how apps inside a site interact with one another. ...
7
votes
6answers
1k views

Using django models across apps?

So in my Django project I have a few different apps, each with their own Models, Views, Templates, etc. What is a good way (the "Django" way) to have these Apps communicate? A specific example would ...
7
votes
1answer
916 views

Jquery in Django: Which django apps should I look into?

I want to use some jquery in my forms and I was hoping to use some ready made solutions - there seem to be a lot of them... Which django apps would you recommend for this purpose? Which are most ...
6
votes
2answers
104 views

Exclude system paths from django_coverage

I'm running django_coverage over a project with the command test_coverage. It's working, but it's including in the output and final calculation code in /usr/local/lib/python2.6/dist-packages. I'm not ...
5
votes
2answers
2k views

Django: Is there a way to have the “through” model in a ManyToManyField in a different app to the model containing the ManyToManyField?

Lets say I have two django apps: competitions - which will handle competition data entries - which will handle functionality relating to entering competitors into competitions In the competitions ...
5
votes
3answers
2k views

Best photo app for Django to sell photos online [closed]

I have a client who is an events photographer and they want to be able to sell photos online. The major differences from personal photo apps would be: Need to upload 100s of photos at a time Easy ...
4
votes
4answers
735 views

Sharing models between Django apps

I will be brief: to work in the spirit and idea of a Django app, it is ok for an app to import models from inside another app ? Say, a User statistics app will import models from a User app something ...
4
votes
4answers
608 views

Is there a naming convention for Django apps

Is there a preferred naming convention for creating a Django app consisting of more than one word? For instance, which of the following is preferred? my_django_app my-django-app Update: Not allowed ...
3
votes
2answers
500 views

Django invite code app recommendation?

I'm looking for a simple Django app that restricts registration to users who have an invite code (for running a private beta). I'm using django-registration, so something that plays nicely with it ...
3
votes
3answers
75 views

Any benefits of turning libraries for Django into an App?

When developing some functionality for use with django. In this case a middleware and some other utils like a decorator. Is there any upside of making it into a Django App. The library has no models, ...
3
votes
1answer
84 views

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 ...
3
votes
1answer
775 views

Django sub-applications & module structure

I am developing a Django application, which is a large system that requires multiple sub-applications to keep things neat. Therefore, I have a top level directory that is a Django app (as it has an ...
3
votes
3answers
535 views

How do you make a Django app pluggable?

Say for example I have a Blog app that I want to be able to drop into different projects, but I always want the Blog to be associated with some other model. For example, in one case I may want it to ...
3
votes
2answers
588 views

Is there a Django apps pattern equivalent in Google App Engine?

Django has a very handy pattern known as "apps". Essentially, a self-contained plug-in that requires a minimal amount of wiring, configuring, and glue code to integrate into an existing project. ...
2
votes
3answers
63 views

Multiple Instances of a django app, does django support this

I have written a simple feedback application in django. It's not particulairly complex, basically it allows authenticated users to write a shot message with a subject line and submit that message via ...
2
votes
1answer
46 views

yourlabs-subscription error — Caught VariableDoesNotExist while rendering

I have been trying to use the updated yourlabs subscription example, and the installation has worked fine except that Each of the views in the subscription app returns the request variable in the ...
2
votes
3answers
110 views

Best app for avatar / profile images on Django

In my application I have a model called Product. Every time a user adds new product should be upload a profile image for that product. On the web there's a lot of django app for managing ...
2
votes
2answers
420 views

How to localy install django third-party apps?

I'm making a small django project where I use third-party apps like South and others. I will probably rent a host to this project, so I wont be able to install these apps via easy_install. Is there a ...
2
votes
2answers
706 views

what's the best django profile / user settings application around?

I'm looking for a good django app that brings to me basic features like user profile editing password changing save settings / preferences specific to my app save authentication keys to external ...
2
votes
3answers
127 views

Unique names in INSTALLED_APPS Django limitation

Django docs says: the final dotted part of the path to the module defined in INSTALLED_APPS must be unique I'm developing a CMS based on Django. And here comes the problem: the moment will come ...
2
votes
1answer
144 views

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?
2
votes
3answers
301 views

django-photologue upload_to

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 ...
2
votes
4answers
97 views

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. ( ...
2
votes
2answers
568 views

Installing and using django-registration

Previously I've been using some older version of django-registration which seems to be deprecated now. Because my server does not allow me to install python plugins I need to use 'registration' as ...
2
votes
1answer
4k views

Message framework: no module messages

I am following this tutorial: http://docs.djangoproject.com/en/dev/ref/contrib/messages/ but I get this error: Error: No module named messages . And in django/contrib folder effectively there ...
2
votes
3answers
967 views

Django Reuseable Apps

I came across many resources about the difference between Django projects and reusable apps, most prominently the DjangoCon talk, and Pinax Project. However, being a newbie, writing my own projects ...
2
votes
1answer
347 views

How can I use multiple shipping values in satchmo?

There's already some shipping modules such as FEDEX, Flat Rate, Per pieced and UPS but how can I let the user choose its preferred shipping method and/or price? For those who don't know, Satchmo is a ...
1
vote
1answer
100 views

How to use django-notification to inform a user when somebody comments on their post

I have been developing in django for sometime now, and have developed a neat website having functionality such as writing blogs, posting questions, sharing content etc. However there is still one ...
1
vote
4answers
104 views

What exactly are Django Apps

I want to switch from Rails to Django, to broaden my mind, and a question has bobbed up in my mind. My Rails app is quite a mess, since my hobby-based development approach is a patch-and-glue one. I ...
1
vote
1answer
39 views

Make my models and data usable in many apps

I'm creating a new django project from scratch. I have two apps that will rely on the same data. For example, let's say that I have a Car model. This Car Model will be used by the Tune app (where you ...
1
vote
1answer
82 views

Tracking User Actions on Landing Pages in Django

I'm developing a web application. It's months away from completion but I would like to build a landing page to show to potential customers to explain things and gauge their interest--basically ...
1
vote
1answer
156 views

Do I need to call syncdb before or after South migrate

I'm new to South so I am wondering if I ever need to call ./manage.py syncdb or doing ./manage.py schemamigration appname --auto ./manage.py migrate appname is sufficient in all cases South can ...
1
vote
4answers
146 views

Where can I find a pluggable blog app for Django?

Where can I find an open source pluggable blog app for Django? It should support: RSS/Atom Comments the built-in Django authentication system Markdown (optional) Akismet or other spam protection ...
1
vote
1answer
122 views

Implementing multiple administration levels in Django

I have decided to move a project from PHP to Python and despite hours of searching, I cannot find a way to implement the following design. I have attempted extending the user class and doing ...
1
vote
1answer
127 views

Can I use the django admin as an app?

As all of you know django provides a very basic though flexible admin panel for your project. I've seen here discussions refering the (dis)advantages. of writing your own control interface and using ...
1
vote
1answer
161 views

Django imagekit cumulus - ResponseError: 401: Unauthorized

This is driving me crazy. Is there someone out there that can help? Traceback (most recent call last): File "/opt/python2.6/lib/python2.6/site-packages/django/core/handlers/base.py", line 92, ...
1
vote
2answers
164 views

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 ...
1
vote
1answer
520 views

django image storage cdn

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. ...
1
vote
2answers
80 views

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): ...
1
vote
1answer
64 views

HowTo Install the Django emailauth App into a New Project

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 ...
1
vote
3answers
259 views

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 ...
1
vote
3answers
512 views

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 ...
1
vote
1answer
543 views

decoupling django apps - best practice to layout a project

I'm working on a project that has several apps, and want to include a news app for news stories. However, I'd like to link news stories to objects in my custom app, but use an open source news app to ...
0
votes
1answer
35 views

Django Social Auth giving “Incorrect authentication service” error when trying to login via Twitter

I'm sure there aren't too many people on the site that have experience with this but I'm going to get it a shot. I tried installing Django Social Auth for social authentication on a site I am ...
0
votes
1answer
26 views

How to provide a delete button for django built in comments framework

I am using django comment framework. It says it provides a lot of functionality, and I can also see in the source files that there are various options, but the documentation is a bit poor. There are ...
0
votes
1answer
46 views

whoosh issues with django forum apps

Trying to get some forum apps up and running. Cant get anything to work. With djangobb forums, and the pybb-demo im getting The 'whoosh' backend requires the installation of 'Whoosh'. Please refer ...
0
votes
1answer
26 views

request variable not being returned in the Django shortcut function render

The following in part of my view file def user_detail(request, username, template_name='auth/user_detail.html', extra_context=None): context = { 'user': ...
0
votes
0answers
68 views

How to use django-subscription to create live notifications

I have been working on this for some time now, and would like to create facebook-like notification system. My project has following features It has a blog interface where users can write their ...
0
votes
0answers
32 views

Best app for making facebook like notifications in django

I would like to make Facebook like notification system in my Django based website and I have come across a couple of apps such as django-subscription, django-notification and django-notify. Which one ...

1 2