Tagged Questions

0
votes
2answers
38 views

Lots of queries required to return a list of models in django

I have two classes for my django app. The first (Item class) describes an item along with some functions that return information about the item. The second class (Itemlist class) …
0
votes
3answers
28 views

Django form submit button’s onclick does not call JavaScript function

I have a Django form that needs to do some client-side validation before submitting the form. This is the code in the template: <form action="/{{ blog_entry.id }}/addComment/" …
0
votes
2answers
16 views

how to set an event handler in a django form input field

How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible? Any clue would be appreciated.
0
votes
1answer
21 views

How do I add a prefix to all urls and generically parse that as a kwarg

Let's say I have a site where all urls are username specific. For example /username1/points/list is a list of that user's points. How do I grab the /username1/ portion of the …
0
votes
1answer
21 views

Django App Not Showing up in Admin Interface

I'm currently moving from my development server to an Apache web production server. I've tried doing the following just by copying it over and I can login to the admin panel but i …
1
vote
5answers
50 views

Django: Ordering objects by their children’s attributes

Consider the models: class Author(models.Model): name = models.CharField(max_length=200, unique=True) class Book(models.Model): pub_date = models.DateTimeField() author = mode …
1
vote
2answers
33 views

YSlow Best Practices with Django apps, How to implement them?

Hi, I have an django 1.1.1 app, actually in developement, thinking in best practices I ran the YSlow test (Grade E Ruleset applied: YSlow V2 ) it recomends: Grade F on Ad …
3
votes
3answers
44 views

how to perform profiling for a website?

I currently have a django site, and it's kind of slow, so I want to understand what's going on. How can I profile it so to differentiate between: effect of the network effect of …
0
votes
2answers
19 views

How do I do a if a in list_b test in Django 0.96 Templates?

How do I do a if a in list_b test in Django 0.96 Templates? I'm having a list of checkboxes and a variable containing a list of corresponding values from a previous submit of the …
0
votes
1answer
28 views

Django: Signal on queryset.update

Django is sending the pre/post_delete signals if you are using the queryset.delete() method, but shouldn't it then also send pre/post_save on queryset.update()?
0
votes
0answers
19 views

Problem with combined Authentication/Login view.

I have been using Django for several years now and up until this point have always redirected users to a login page after registering their account, and therefore have never had …
1
vote
1answer
85 views

optimizing this django code?

Hi, I'm having some performance issues because I'm making a lot of query calls that I'm not sure how to reduce. user_item_rel_set is a m2m relation between user and items showing …
2
votes
1answer
28 views

How can I get previous and next objects from a filtered, ordered queryset?

I have a page based on a model object, and I want to have links to the previous and next pages. I don't like my current solution because it requires evaluating the entire queryset …
0
votes
3answers
42 views

Activate virtualenv via os.system()

Hey all, I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able t …
1
vote
1answer
11 views

Django: Filter rows containing a set of values in ManyToManyField

I have the following model: class Channel(models.Model): tags = models.ManyToManyField(Tag) class Tag(models.Model): name = models.CharField( primary_key = True) And wa …

1 2 3 4 5 227 next
15 30 50 per page