0
votes
0answers
6 views
Django: serving ADMIN media files
Hi all,
I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as …
0
votes
3answers
54 views
How do you do something after you render the view? (Django)
I want to do something after I have rendered the view using
return render_to_response()
Are signals the only way to do this? Do I need to write a custom signal or does request_ …
1
vote
0answers
8 views
Generating forms from models (a la django ModelForms) in Objective-C
I'm taking the plunge into iPhone development after about two years working with django. As I've done tutorials and read documentation, one of the things that strikes me as inconv …
1
vote
3answers
41 views
How Do I Remove Text From Generated Django Form?
So earlier I asked a question about removing the label that Django forms have by default. That worked out great, and I removed the label. However, the text that is generated by the …
0
votes
2answers
47 views
Django named urls unrecognized by template url tags
In projects/urls.py I have:
urlpatterns = patterns('bizteen.projects.views',
url(r'^browse/$', 'browse', name='projects-browse-main'),
url(r'^browse/(\d+)/$', 'browse', na …
0
votes
3answers
20 views
Removing the Label From Django’s TextArea Widget
How do I remove the label that comes attached to the TextArea I am trying to use with Django? I'm trying to find ANY information about this issue but I cannot seem to find anything …
0
votes
1answer
20 views
handler not working in gae python
I have two handlers in webapp.WSGIApplication for two forms in a django template, one of the handler works on dopost but the other one goes to blank page. Why is this so?
0
votes
4answers
86 views
How do I store multiple values in a single attribute
I don't know if I'm thinking of this the right way, and perhaps somebody will set me straight.
Let's say I have a models.py that contains this:
class Order(models.Model):
custo …
1
vote
3answers
31 views
storing file content in DB
I am making a model in which i have a filefield.I wan to store file content in the DB column instead of file path.ANy suggestions
0
votes
2answers
27 views
Django queries, generic content_types
I have a question about django content_types
In the example of filtering a QuerySet for a generic content type on http://www.djangoproject.com/documentation/models/generic_relatio …
4
votes
4answers
71 views
Restarting a Django application running on Apache + mod_python
I'm running a Django app on Apache + mod_python. When I make some changes to the code, sometimes they have effect immediately, other times they don't, until I restart Apache. Howev …
0
votes
0answers
14 views
Django: Add class to currently viewed page in the menu
Hi
I have a base template which holds a little menu. Depending on which template the user is currently seeing, I want one of the menu items to have a special class which tells the …
4
votes
8answers
115 views
tools to aid in browsing/following (large) python projects’ source code
A specific example: becoming familiar with django's project source code (core, contrib, utils, etc.). Example of a useful tool: ctags - it allows you to "jump" to the file+locatio …
0
votes
3answers
27 views
Best practice for uploading and image file with Django Forms (Django 1.0)
Hi friends, could you please help me to get image upload working on a view with django forms
Models.py
class User_Profile(models.Model):
user = models.OneToOneField(User, unique= …
0
votes
2answers
35 views
Not null ForeignKey(’self’)
How can I make a ForeignKey refer back to the object itself? I'm trying :
Alias(MyBaseModel):
type = models.ForeignKey('self')
a = Alias()
a.type = a
a.save()
But then when …
