0
votes
3answers
91 views
Suspicious Operation Django
Hello,
I've been running into a problem while trying to delete uploaded images.
The error is along these lines:
SuspiciousOperation: Attempted access to '/media/artists/12-stones/154339.jpg' …
1
vote
2answers
35 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']}),
]
…
2
votes
5answers
139 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
26 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 …
0
votes
3answers
51 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
22 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
2answers
67 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
50 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
1answer
17 views
Mako templates use old version until I manually update template files
I periodically get this problem where all of a sudden mako is using old versions of templates, and it's not until I manually go and update the template files that they'll use the current version. I'm …
0
votes
1answer
71 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
1answer
30 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
45 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
4answers
110 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
…
6
votes
6answers
236 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
37 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 …
