Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
883 views

contrib.staticfiles and Django admin media

I just switched from 1.2 to trunk (r15175 at this writing) to play with contrib.staticfiles, and now when using the local devserver all my admin media returns a 404. The static media (as managed by ...
4
votes
1answer
406 views

Spurious failures in django.contrib.messages.tests when running manage.py test

I've recently added authentication (via django.contrib.auth of course) to my application, along with appropriate "signin"/"signup" links to my base.html. The problem comes when I run manage.py tests, ...
4
votes
3answers
1k views

django: failing tests from django.contrib.auth

When I run my django test I get following errors, that are outside of my test suite: ====================================================================== ERROR: test_known_user ...
4
votes
2answers
664 views

django comments: how to prevent form errors from redirecting the user to the preview page?

Currently, django.contrib.comments sends the user to the preview page if there is any error on the form. I am using comments in the context of a blog and I would much rather that the user stayed on ...
3
votes
3answers
229 views

Should I use Django's contrib applications or build my own?

The Django apps come with their own features and design. If your requirements don't match 100% with the features of the contib app, you end up customizing and tweaking the app. I feel this involves ...
2
votes
3answers
89 views

Authentication templates in Django

Does Django ship with the authentication templates for use with the django.contrib.auth module? I found some under the tests directory but I'm not sure if they are the right ones. By authentication ...
2
votes
1answer
131 views

Postal Code model field shows up as State list in Admin

Not sure, but I think this may be a bug? Here is my model: class Property(models.Model): Name = models.CharField(max_length=40) Description = models.TextField(default="Description Not Available") ...
2
votes
2answers
312 views

Django: Why create a OneToOne to UserProfile instead of subclassing auth.User?

Note: If you are tempted to 'answer' this question by telling me that you don't like django.contrib.auth, please move on. That will not be helpful. I am well aware of the range and strength of ...
2
votes
1answer
61 views

Extending a field of a contrib model in Django

I have come across this situation several times. If I have something that I generally like in contrib, but I want to make one minor tweak to a field, what do I do? I don't want to throw out the baby ...
2
votes
2answers
201 views

Django - Read the current's user authentication backend class

I am using a custom authentication backend with Django, to automatically create and login users from a legacy system. My Backend class is this: from django.contrib.auth.backends import ModelBackend ...
2
votes
1answer
216 views

Using Django Cache Middleware causes contrib.auth unit tests to fail

Problem: When I add UpdateCacheMiddleware and FetchFromCacheMiddleware to my Django project, I get unittest failures. This is regardless of the CACHE_BACKEND I use (right now I am using locmem://, but ...
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 ...
1
vote
2answers
28 views

Django - Cannot login when subclassing User model

I searched for a similar question but found none so far. I have a subclass of User (django.contrib.auth.models.User). I want my site to support both Individual users and Business users, so in this ...
1
vote
2answers
52 views

Manager for a user profile to create and delete both user and the profile

I have a model called Personnel which I'm using as the profile model for the User model. Moderators on my site can create and their own accounts but all the profile fields should be filled in. Here's ...
1
vote
0answers
193 views

Django 1.2 : Multiple database and Generic Content Types

I am working on one project with django 1.2. I have 2 databases : - First, for users, user's profile, session ... - Second is to store data from my specifics models like post of blog, pictures, ...
0
votes
1answer
78 views

django-comments questions

I've just implemented django-comments. settings.py INSTALLED_APPS = ( ... 'django.contrib.comments', ) product_detail.html {% get_comment_count for product as comment_count %} ...
0
votes
3answers
27 views

Reverse looking up a table linked to the profile model linked to the User model

I'm uisng django.contrib.auth for authentication. The User mode has a custom profile model called Personnel. Personnel is linked to another table called Company. class Personnel(models.Model): ...
0
votes
1answer
120 views

How can a person extend django.contrib.sites.admin so as to include a field from a model with a foreign key pointing at sites?

I am struggling to extend the django.contrib.sites.admin. I am having a difficult time finding how to add a field to the sites admin page due to the fact that django.contrib.sites knows nothing of my ...
0
votes
1answer
97 views

Customize Django comments framework so that the comment does not have to be unique

I'm customizing the comments model per the Django documentation. In my specific use case, however, comments are allowed to be blank. The trouble I get into then is that the Comment model is setup ...
0
votes
0answers
72 views

Django-admin model many to many relationship with admin group

This is a short question. How can I link a relationship back to existing user group created by django when project created? For example I have a model called question. One or more questions can ...
0
votes
2answers
101 views

Should I place custom registration code in Views, Models or Managers?

I'm rolling my own custom registration module in Django based on django.contrib.auth. My registration module will have some extra functionality and help me reduce my dependency on other django modules ...
0
votes
1answer
193 views

manage.py syncbd not syncing django.contrib apps

This is probably a setting error somewhere. I have a django app that works fine on my desktop with the developer server and sqlite3. I upload it to my server and syncdb and it only syncs my custom ...
0
votes
2answers
701 views

Django, BigIntegerField, and django.contrib.auth.user.id

Django now provides a BigIntegerField for use in django models (available in svn trunk and also 1.2 alpha-1 release). I need my django.contrib.auth.user model to have a BigIntegerField as its ...
0
votes
1answer
456 views

Django comments framework

Hi I am quite new to Django and am trying to get to grips with a few things. I would like to know if the comments framework that is bundled with django can redirect to the refering page if the ...