0
votes
0answers
7 views
Django Session Persistent but Losing Data
Hello everyone,
I have been working for hours trying to understand the following problem: I have a user send an Ajax request to dynamically send a form and record that the number of forms to read on …
0
votes
5answers
101 views
+150
Filtering the Aggregate in the Django ORM
I have a function that looks like this:
def post_count(self):
return self.thread_set.aggregate(num_posts=Count('post'))['num_posts']
I only want to count posts that have their status marked …
0
votes
2answers
15 views
Django Development Server Not Serving Errors from Ajax Requests
Hello everyone,
I've been trying to get some Ajax stuff to work in my Django application, but it has been difficult because for some reason syntax and type errors are not causing a server crash and …
0
votes
2answers
42 views
How to handle non managed models in unittests.
In a project I'm working on, I have an app with models that aren't managed by Django. The reason is, that I want to do some postgres specific SQL in some cases, so I needed more fined grained control …
0
votes
1answer
24 views
Format for DateTimeField
In Django I get this error "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." when I try to assign a string "22-DEC-2009" to a DateTimeField.
How is it possible to make DateTimeField …
1
vote
3answers
199 views
How to Unit test with different settings in Django?
Is there any simple mechanism for overriding Django settings for a unit test? I have a manager on one of my models that returns a specific number of the latest objects. The number of objects it …
0
votes
7answers
404 views
User upload profile pictures on django/jquery website in .jpg/.gif/.png format. How can I scale/crop them down when displaying them?
I'm letting users upload a profile picture for themselves on my site. These images are coming in on all different formats and sizes. When I display these profile photos I want them to be of a …
0
votes
1answer
45 views
Django Comment, append symbol to the url comment?
Hi guys, im using the comment system, now, i would like to re-write the segment form the url comment and append a symbol #, i want to move the page seccion to the comment list exactly to the last …
1
vote
1answer
26 views
Use the same Django models across two different databases in the same app
I have a set of Django models that are used in two databases (i.e. syncdb was run against two databases from the same app). Both databases are for production services (one database contains on-demand …
2
votes
1answer
24 views
How to trigger django DEBUG on a production server non intrusively
I'm looking for a safe method of triggering DEBUG for INTERNAL_IPS requests on a django production server without requiring the alteration of a settings.py file. Mainly to get the toolbar going for …
0
votes
4answers
95 views
Why isn’t count() working the way I expect in my code?
class FriendshipManager(models.Manager):
def are_friends(self, user1, user2):
if self.filter(from_user=user1, to_user=user2).count() > 0:
return True
…
2
votes
4answers
60 views
The right way to handle additional user data in Django?
I need to attach a significant number of additional properties to every user in my Django project. Some of these properties are simple CharFields, others are more complex ManyToManyFields. The …
0
votes
0answers
21 views
Django - Loading templates from different project folder?
Issue: Beta site is pulling from primary site templates folder,
below is a skeleton structure of the site folder structure - store is the hosted project dir for DOMAIN.com
beta/store goes to …
0
votes
1answer
27 views
How to redirect to a newly created object in Django without a Generic View’s post_save_redirect argument
I'm trying to redirect a user to a newly created object's object.get_absolute_url() after saving a form. I'm not using a generic view, so I can't use the post_save_redirect argument. The relevant …
0
votes
1answer
59 views
Changing properties of inherited field
I want to alter properties of a model field inherited from a base class. The way I try this below does not seem to have any effect. Any ideas?
def __init__(self, *args, **kwargs):
super(SomeModel, …
