0
votes
1answer
45 views
Losing session data when user logs in
Hello,
I have been working on a shop that is built in Python on the back of the django framework, everything was working fine until I noticed that when a user proceeds to the che …
3
votes
3answers
30 views
How to make uniques in Django Models? And also index a column in Django.
This is my simple Django database model. It's for a 5-star rating system.
class Rating(models.Model):
content = models.OneToOneField(Content, primary_key=True)
ip = model …
0
votes
1answer
28 views
django, datetime and timezones
I am using: datetime.now() to get the current time in an Event app that lets you create an event that has an end date, then all of the events are displayed in a calendar and if an …
3
votes
5answers
80 views
Django, is possible to run two different versions?
Hello,
I have a server on which I have two sites built with Django and Python, one site is major site is build with an older version of django, the other with the newer release, …
0
votes
1answer
25 views
Weird MySQL Python mod_wsgi Can’t connect to MySQL server on ‘localhost’ (49) problem
There have been similar questions on StackOverflow about this, but I haven't found quite the same situation. This is on a OS X Leopard machine using MySQL
Some starting informatio …
1
vote
0answers
19 views
Problems PUTting binary data to Django
I am trying to build a RESTful api with Django to share mp3s -- right up front: it's a toy app, never going into production, so it doesn't need to scale or worry (I hope) about cop …
1
vote
2answers
49 views
How do I make django’s markdown filter transform a carriage return to <br />?
How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?
0
votes
2answers
30 views
Django is_valid() not working with modelformset_factory
I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the is_valid() check before …
0
votes
5answers
89 views
How to have URL like this in django
How an I have URLs like example.com/category/catename-operation/ in Django?
Also in some cases the user enters a space separated category, how can I handle that?
E.g if user enter …
0
votes
2answers
30 views
Django, Import tables as models
I would like to know if it's possible to use django over existing db tables that defines the models.
Instead of defining models in order to create db tables
0
votes
2answers
18 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don …
1
vote
7answers
221 views
Python Vs RoR : on Size
I am planning to do a small web application that will be distributed as a single installable. I have plans to develop this application in either Python/Django or RoR. (I am a Java/ …
0
votes
2answers
26 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Imag …
0
votes
1answer
32 views
Django: Serving admin media files
Hi!
I am trying to serve static files from another domain (sub domain of current domain).
To serve all media files I used this settings:
MEDIA_URL =
'http://media.bud-inform …
0
votes
2answers
111 views
Function not being called in Python, why? and how can I solve it?
Hello, I am currently working on python/django site, at the moment I have a template that looks like this
{% extends "shopbase.html" %}
{% block pageid %}products{% endblock %}
{ …
