Tagged Questions

1
vote
2answers
29 views

How to add clickable links to a field in Django admin?

Hi, I have this admin.py class LawyerAdmin(admin.ModelAdmin): fieldsets = [ ('Name', {'fields': ['last', 'first', 'firm_name', 'firm_url', 'school', 'year_graduated']}), ] …
0
votes
1answer
21 views

Choice of database for a Django-based RSS application?

I'm planning a web application using Django, and it's based on a big pile of data from RSS feeds. What would be the best database to use to store the content of a lot of posts and metadata, as well as …
1
vote
5answers
120 views

Diacritic signs

Hi, how should I write "mąka" in Python without an expection? I've tried var= u"mąka", var= unicode("mąka") etc... nothing helps :/
0
votes
1answer
20 views

authenticate returns nothing

Hi, what im experimenting is the next: S:\proj>manage.py shell Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) django 1.1.1 >>> from django.contrib.auth.models import User >>> …
0
votes
3answers
48 views

select object to edit

I have a simple view function that's designed to allow the user to choose from items listed in an html table (records). Clicking on a record should divert the user to the template from which he can …
0
votes
1answer
26 views

Adding new forms to a Django formset based on POST data

I am trying to populate a Django formset using data from a POST request. I am able to display the formset properly and instantiate it again mostly alright, but I'm having an issue where the formset …
0
votes
2answers
43 views

Django - Using trees to build a comment system.

A few days back I was messing around with Django, trying to get a feel for how stuff works, when I decided to try and build a simple forum, one that resembled a forum that I frequented (but is now …
0
votes
2answers
42 views

In Django, How do I get escaped html in HttpResponse ?

The following code in one of my views returns unescaped html string which cannot be parsed in frontend since it is an Ajax request. return render_to_response(template_name, { 'form': form, …
0
votes
1answer
52 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 in a model. How is it possible to make …
0
votes
4answers
106 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 …
0
votes
1answer
33 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 …
3
votes
2answers
98 views

Django index page best/most common practice.

I am working on a site currently (first one solo) and went to go make an index page. I have been attempting to follow django best practices as I go, so naturally I go search for this but couldn't a …
6
votes
6answers
229 views

Why use Django on Google App Engine?

When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of …
0
votes
1answer
60 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, …
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 …

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