Django is an open source Web 2.0 application framework, written in Python. Its primary goal is to ease the creation of complex database-driven websites.
1
vote
1answer
156 views
Regex replacing a string while saving parts of it
I was wondering if it's possible to reserve some of an excisting value, while replacing. Example:
Original:
{u'America': u'A'}
After replacing:
{u'America': _(u'A')}
u\'[w]\' selects the value ...
0
votes
2answers
26 views
Filtering objects less than 30 days and excluding object's user for a particular object
I have 2 models called Car and Review . A user can write many reviews for a car.
I am able to filter all the reviews for a certain car .
The issue i'm facing is , I only want to filter all the ...
2
votes
1answer
22 views
Conditionally Showing All or Some Fields from Single TastyPie Resource
Can I use a single TastyPie resource and conditionally have it return all or a subset of columns?
I have an employee database, which I can pull a full record via: /api/v1/employee/. But certain data ...
0
votes
1answer
23 views
Django fiter query from relational table
I'm creating blog, articles are posted only by login.So am having four table such as, User, JSdetails, Blog, comments. This four table are interrelated with each other. Here I want to display profile ...
0
votes
1answer
21 views
OneToOneField QuerySet returning empty dict
I have 2 models called Manufacturer and Car . The Car model has a foreignKey to Manufacturer which mean a many cars can belong to a single Manufacturer.
In the model manfacturer , their is an ...
0
votes
2answers
35 views
'NoneType' object has no attribute 'user'
models.py
class Report(models.Model):
user = models.ForeignKey(User, null=False)
photo_files_attached = models.BooleanField('Photos', default=False)
views.py
def media(request):
user = ...
1
vote
3answers
673 views
Django Pass Multiple Models to one Template
I am building an address book that includes the relationships between entries, etc. I have separate models for Individuals, Companies, Venues, and Roles. On my index page I would like to list all of ...
0
votes
1answer
27 views
Django image file not getting uploaded
models.py
class Report(models.Model):
user = models.ForeignKey(User, null=False)
photo_files_attached = models.BooleanField('Photos', default=False)
forms.py
class ...
0
votes
2answers
23 views
Caught KeyError while rendering: 'phone_mobile'
forms.py
class UserCreateProfileForm(forms.ModelForm):
phone_daytime = forms.IntegerField(required=False)
phone_mobile = forms.IntegerField(required=False)
class Meta:
model = ...
0
votes
1answer
23 views
Smoothly converting a static website to Django
I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm.
Now, I want ...
1
vote
1answer
24 views
Django loaddata command on cygwin returns an error when installing fixtures (SQLite3 database)
I've updated cygwin and python on cygwin to 2.7 and now I cannot load any json files to the database using the loaddata management command in Django. (Using SQLite3 as a database backend)
It works ...
0
votes
1answer
59 views
How can I get the name of app inside a model?
I'm trying to write model mixin, that will give me direct link to admin edite form:
class EditLinkMixin(models.Model):
def get_admin_link(self):
return '/admin/%s/%s/%d/' % (app_name, ...
2
votes
6answers
788 views
Extract 2nd level domain from domain? - Python
I have a list of domains e.g.
site.co.uk
site.com
site.me.uk
site.jpn.com
site.org.uk
site.it
also the domain names can contain 3rd and 4th level domains e.g.
test.example.site.org.uk
...
0
votes
2answers
22 views
Multiple Django apps under same domain
I'm trying to set up two Django applications locally at subdirectories under the same domain, e.g.:
http://127.0.0.1/en/
http://127.0.0.1/jp/
Here is a snippet of /etc/apache2/apache2.conf
...
0
votes
1answer
22 views
Webfaction Mezzanine ALLOWED_HOSTS 200 error
So my site shows up fine with DEBUG = True, but I get a 200 server error when I change it to False. I've been reading around and saw that 500 errors are common but I can't find anything on a 200 ...
1
vote
1answer
90 views
Django REST Framework different depth for POST/PUT?
I am using Django REST Framework to create an API for my web app. I have a class 'Comment', that has depth=2 set in the Meta class. This works great when GETing the Comments. When I try to send a POST ...
2
votes
1answer
93 views
Django admin site — list ForeignKey items as change-list on change page
In (a toy version of) my project, there are Owners who own any number of Objects. My models.py file looks like
class Owner(models.Model)
name = models.CharField(max_length=50)
date_of_birth = ...
0
votes
2answers
78 views
Django and android
I have to build a python based (server based) HR system with the following features:
Possibility to add/edit/remove employees by an admin .
Possibility of employees to mark their check in/ check ...
0
votes
1answer
33 views
how to provide inital data to django models?
how to provide inital data to django models that include foreignkeys and datetimefield.
for example::
quorum/models.py
class Question(models.Model):
user=models.ForeignKey(User)
...
0
votes
2answers
27 views
Rendering only HTML from view?
Currently render_to_response returns a HttpResponse objects that holds the html, but is there a way to to just render only the HTML from a template, a dictionary, and a request from a view?
Note: the ...
1
vote
2answers
34 views
Django: delete related object via OneToOneField
Is there some clever way how to perform delete in this situation?
class Bus(models.Model):
wheel = OneToOneField(Wheel)
class Bike(models.Model):
wheel = OneToOneField(Wheel)
...
0
votes
2answers
28 views
Best way to schedule task in Django, without Celery
Im looking for relatively simple and lightweight way to setup primitive DB maintain tasks for Django-based web-site. Celery seems for me like overkill.
In my mind its now looking like making custom ...
0
votes
1answer
27 views
Django save model and its children with ModelForm
I have such models: Article, Link & ArticleLink. Article can have many links attached to it and I need to save them from one form.
I have created all the relations and a ModelForm for Article, ...
0
votes
1answer
16 views
Building Custom Extentable Models
Say I have a model called client with basic info such as first name, last name, email etc. If I want the user to be able to add another custom field (just for him) say net worth (a text field). This ...
0
votes
1answer
35 views
Django and loading jQuery
It is possible to have scripts tags in child pages and to be rendered by Django whey they (child pages are loaded / showed)?
I have a mobile web app which has this structure
ROOT
--PAGE1 (here I'd ...
6
votes
3answers
508 views
How to tell if you have multiple Django's installed
In the process of trying to install django, I had a series of failures. I followed many different tutorials online and ended up trying to install it several times. I think I may have installed it ...
1
vote
1answer
42 views
Django and SQL Injection with example
I'm receiving an incoming POST from another site, below is how I currently get it. I'm new to Django, but few things jump out at me and I'm wondering if I should be concerned.
SQL Injection: As I ...
1
vote
1answer
50 views
What could cause a Django based Facebook Page Tab to take 2 minutes to load?
I have a very simple web page that uses the Facebook Javascript API and is installed as a tab on a Facebook page. When the page is loaded, the only thing it does after calling the usual Facebook init ...
2
votes
3answers
1k views
Python MySQLDB: Get the result of fetchall in a list
I would like to get the result of the fetchall operation in a list instead of tuple of tuple or tuple of dictionaries.
For example,
cursor = connection.cursor() #Cursor could be a normal cursor or ...
3
votes
2answers
397 views
Django - Johnny Cache for multiple processes
I've configured johnny cache with one of my applications that is hosted on apache. It is configured with memcached as the backend which runs on the same machine on the default port.
The caching ...
0
votes
0answers
18 views
HTTP 413 Request Entity Too Large when uploading a small file
I'm running NGINX and uWSGI for my Django 1.3.2 application. I'm using django-storages to write uploaded images to S3.
The response I get back is: 413 Request Entity Too Large from my application ...
1
vote
2answers
301 views
What does it mean for an object to be unscriptable?
I don't know what's going on here... I just want to check the value of a model field and then update it accordingly... any help or insight is appreciated!
model:
class UserProfile(models.Model):
...
0
votes
1answer
25 views
django admin - overriding changelist_view for single entry models
I have a model for which i'll have one single instance, so i need to override the changelist_view to by-pass it (only if i have at least one record saved), and jump directly to change_view. i found ...
0
votes
1answer
11 views
Django Tastypie, how to search throught multiple modelresource?
I'm looking for a way to add a 'generic' search throught some of my ModelResource.
Using a 'v1' api, I would like to be able to query some of my ModelResources allready registered with this kind of ...
1
vote
1answer
149 views
How to limit Django's debug page to display only to certain IPs
I need to expose my site to the internet (there are things keeping it from being stumbled upon by most people) but I want to make sure the debug page which appears when a 500 (?) error occurs is only ...
0
votes
1answer
28 views
'NoneType' object has no attribute 'encode'
I'm trying to use GeoAdmin in GeoDjango.
I have a table planet_osm_point and I would like to see it in the admin interface.
I'm a beginner in django.
I have this problem :
Environment:
Request ...
0
votes
2answers
40 views
Celery Tutorial Works Correctly in standard iPython shell but not when using Django's embedded iPython shell
I've been setting up a test instance of django-celery and going through some of the basic celery examples and came across something that seems odd.
I first went through the "First steps with ...
20
votes
7answers
7k views
In a django model custom save() method, how should you identify a new object?
I want to trigger a special action in the save() method of a Django model object when I'm saving a new record (not updating an existing record.)
Is the check for (self.id != None) necessary and ...
1
vote
2answers
26 views
How can I modify django-postman to allow sending of attachments?
It doesn't seem as if django-postman supports attachments so I'm trying to add attachment support. I'm thinking of doing it by creating another set of models that will refer to a postman message and ...
0
votes
0answers
16 views
Django South migration cannot access custom model Meta attribute
I've got a Django app I've created which uses both Django Guardian to manage object-level permissions, and Django South to manage migrations. I've created a model mixin which allows models to define ...
0
votes
1answer
32 views
Django reverse URL issue
I'm having issues getting the following code (below) to work (there are no errors) . In my template I'm outputting item.get_settings_url but I get nothing. What I'm I doing wrong here?
In my models ...
6
votes
4answers
1k views
Setting up Mimetype when using TemplateView in Django
Does anyboy know how do I set the desired mimetype when using TemplateView, as in:
urlpatterns = patterns('',
url(r'^test\.txt$', TemplateView.as_view(template_name='staticpages/test.html')),
...
0
votes
0answers
21 views
Leaderboard ranking using django
I have a web-site which have scores per each user.
I would like to provide a leader-board and to be able to tell each user (on his profile page for example) his place in the leader board.
I suspect ...
0
votes
1answer
13 views
Django-reversion and proxy models
I'm having trouble saving my model revisions when there are proxy models defined.
class MyModel(models.Model):
field = model.IntegerField(...)
class MyModelProxy(MyModel):
class Meta:
...
5
votes
3answers
444 views
How can I run Django project-level tests?
This seems like a no-brainer, and I'm hesitant to admit that I've spent about two hours trying to find the answer, but I can't figure out how to run project-level tests for a django project.
Just to ...
0
votes
0answers
29 views
Advice on building back-end service. Other server vs php+ mysql scripts [closed]
I am re-designing a back-end to a mobile application. Obviously I want to make sure that it can be used to interact with iOS, android and web apps.
Whatever client facing system is used will ...
1
vote
1answer
32 views
Django template: context for loop traversal
I am working of a context of this strucutre:
{
data:{
0000:{ "name": "foo" , "start": 0, "end":900}
1111:{ "name": "foo2" , "start": 23, "end":330}
2222:{ "name": ...
0
votes
1answer
44 views
How can I tell Django to execute all queries using 10MB statement mem?
I'm using Django with postgresql database.
I'm having very limited access for database configuration and can't alter postgresql.conf.
However if I want to execute all queries through django with ...
3
votes
2answers
788 views
How do I exclude an inherited field in a form in Django?
I have the following form and inherited form:
class UsuarioAdminForm(ModelForm):
first_name = forms.CharField(label='Nombre', help_text = 'Nombre del usuario', required=True)
last_name = ...
0
votes
2answers
200 views
How to serialize to json a list of model objects in django/python
I am trying to serialize a list of model object defined as:
class AnalysisInput(models.Model):
input_user = models.CharField(max_length=45)
input_title = models.CharField(max_length=45)
...

