0
votes
1answer
31 views

Django/Python control: “if form.is_valid ():” is equal to false if the form has an input type “button”

I don't understand why if I have in my html page in a form: <input type="submit" class="btn btn-small btn-primary" id="execute" value="Esegui">` then the form is valid otherwise if I put a ...
0
votes
0answers
22 views

How to create model in django from legacy database in which I have access to few scemas?

We have command to create tables from legacy database. python manage.py inspectdb > models.py I have access to very few scemas in database. I want to create models for the tables which I have ...
0
votes
0answers
13 views

Pillow on Heroku doesn't work

I'm developing an application with Django1.4.3 and Pillow2.0.0. I have a form to upload image file. After resizing and cropping posted image file, I want to save the image file, but error occur. In ...
1
vote
0answers
9 views

Using Scrapy DjangoItem with Django best way

I am am new to Django / Scrapy and well to programming in general. I am trying to make a Django site to help me learn. What I want to do is Scrape product information from different sites and store ...
1
vote
1answer
46 views

Django “Table already exists” on testing

I've tried to solve the following issue: I'm running python manage.py test to test my application. After creating a new test_app database, I'm getting DatabaseError: (1050, "Table 'auth_group' ...
0
votes
0answers
26 views

How to solve “Empty static prefix not permitted” error in Django?

I installed Django 1.5.1 with MySQL and mod_wsgi on ubuntu. After I imported my project from local machine to the server, I get this error by visiting all URLs: **ImproperlyConfigured at /** Empty ...
1
vote
3answers
22 views

Django 1.4 serving media files works, but not static

I am using Django 1.4 and for some reason i am able to serve media files, but not the static ones... Here is my code: settings: MEDIA_ROOT = os.path.join(BASE_DIR, 'media/') MEDIA_URL = '/media/' ...
0
votes
2answers
15 views

Get referenced Model by field name on Django?

I have the following model on Django: class Statue(models.Model): id = models.IntegerField(primary_key=True) name = models.CharField(max_length=128L) ref_id = models.ForeignKey('Foo', ...
0
votes
0answers
31 views

Python Server error

I'm sending data from my android application to python server using post request. I'ce tested it locally and works fine.When I uploaded it to a server, I ran the server on a port number in order to ...
0
votes
1answer
28 views

i need to restart django server to make my app properly work

so i made a python script to grab images from a subreddit (from Imgur and imgur albums). i successfully done that (it returns img urls) and wanted to integrate it into django so i can deploy it online ...
2
votes
2answers
33 views

Randomize a Django queryset once, then iterate through it

I'm writing an app that allows people to compare different pairs of hashtags. Model: class Competitors(models.Model): tag1 = models.ForeignKey('Hashtag', related_name='+') tag2 = ...
0
votes
1answer
42 views

Django views: how to modify returned queryset before rendering in template?

I'm trying to make a simple weather JSON API with Python 2.7 and Django 1.5. My WeatherData model looks like this: class WeatherData(models.Model): created_at = ...
1
vote
0answers
44 views

How to create custom model for the facebook api

Context: Facebook graph API , Django, Python 2.7 I want to use the facebook graph api in python (that's ok) , and I'am curently learning this language. I want to generate response automaticaly from ...
0
votes
1answer
14 views

django-tastypie REST update or delete resource with username

Hi there i am using django tastypie and i can update (PUT) a resource if i provide an id like this : http://mysite.com:8000/api/v1/user/1/ But my question is, can i do an update without the id ...
0
votes
1answer
13 views

Error installing Mezzanine cms on Windows 7

I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here. I recreated my virtualenv, but i still get this error i know that error is caused by pil ...
-1
votes
0answers
27 views

Django Comparison Shopping Site: How to Keep Prices Up to Date? [closed]

I'm creating a web app (as in application as a whole, not referring to a Django app) that has a comparison shopping component. After researching this, it appears that I'll be creating a database and ...
0
votes
1answer
15 views

Importing a distributed python package from Django view

I am working on a Django project where I need to get search results from the Amazon Product Advertising API. I've successfully used the API in PHP but am now working on my first Django app. I have ...
0
votes
2answers
29 views

Embed product-variance logic into Django models

I wonder how I would model my Products model to auto-create (and that the admin-App would also understand it) variants of a Product based on it's variant-parts. My Products have; Colors Sizes and ...
0
votes
0answers
12 views

Pushing Django's admin-logic to the front

I am building a Django-app which has very similar workings as the built-in admin-module has. With that I mean it does a lot of listing, inserting/updating and is in need of filtering a lot. Finally ...
0
votes
1answer
31 views

Django ORM and dependencies

I am currently brainstorming about building an existing PHP CodeIgniter project in Django. I spit through the documentation a bit already and done some online tutorials to test how it works and am ...
0
votes
0answers
41 views

Unable to configure filter 'require_debug_false': Cannot resolve 'django.utils.log.RequireDebugFalse': No module named RequireDebugFalse

I was trying to install mongoDB in Django with the help of link, after following the steps i am not able to start the server and the error am getting is Traceback (most recent call last): File ...
1
vote
1answer
25 views

QuerySet confusion in Django Admin

Very new to Django/Python, and I've hit a brickwall after reading tons of documentation and posts regarding this issue... So I'm working on a simple Django app that has a SQLlite database/table of ...
1
vote
1answer
24 views

Django Admin shows escaped HTML even when allow_tags=True

I have the following code for the model and admin. The question column contains HTML content such as URL and image tags. However the admin still shows the raw HTML content and not formatted content. ...
0
votes
1answer
38 views

django custom authentication backend with custom middleware (both username,password and token absed auth)

I am in a situation where I need to make a custom authentication and custom middleware to authenticate and authorize the user. I have to chek the username password params in the POST request or if the ...
0
votes
3answers
43 views

Handling CSRF tokens in Django

I've written a small standalone python script that's calling my django-based backend and everything is working fine with login and calling views requiring auth and so on. A bit of code def ...
1
vote
1answer
43 views

Django custom manager get_queryset() not working

I can't make my custom manager work... class PublicArtigoManager(models.Manager): def get_queryset(self): return super(PublicArtigoManager, ...
1
vote
0answers
41 views

Changing the log level

I have set the log level as WARN in platform_settings.py and loggings.py file. I have also changed the initial value to WARN in forms.py with (self.fields['log_level'].initial='WARN'). Now, if I ...
0
votes
1answer
26 views

Django template: localize number returned from simple tag

I hope this question is not here, I have googled it for long time and not found anything. I have problem with formating numbers in templates, but somehow special. Maybe, this is whole problem how to ...
1
vote
1answer
41 views

When add four parameter of values, annotate sum not work

I'm using Django 1.4 and Python 2.7. I'm doing a Sum of some values... when I do this, this work perfect: CategoryAnswers.objects.using('mam').filter(category=cat["category"], brand=cat["brand"], ...
0
votes
1answer
38 views

Attach csv file to mail in Django 1.5

How can I attach a csv file I create myself? I can create a csv file with from django.core.mail import EmailMessage email = EmailMessage() email.attach(filename = 'a.csv', mimetype = 'text/csv', ...
0
votes
0answers
16 views

ComboChart and Django how to specify the other options? (ColumnChart and LineChart)

I am trying to display a ComboChart in Django. Google Chart Docs about ComboChart https://google-developers.appspot.com/chart/interactive/docs/gallery/combochart I am using the example code from ...
0
votes
1answer
31 views

How to Stored Multiple Select option Database

I need to store multiple select option data to the database.I try with that but it takes only one option. I given the code below. Templates <select name="qualification" multiple> <option ...
1
vote
1answer
33 views

Password Input in django form hosted on google app engine not working

I am using django form for google app engine. My Django form code : class ChangePasswordForm(forms.Form): password = forms.PasswordInput() confirmPassword = forms.PasswordInput() test = ...
0
votes
0answers
61 views

django tastypie - api authentication ? its server for ios app

I am building IOS app that talks to django server for getting the data. This app uses facebook authentication for login, so I am thinking like this: In IOS app, after clicking login button(fb auth), ...
1
vote
0answers
21 views

Sorting table records in django

I am using a search field in django that searches hotel names from the hotel table based on the hotel names. For searching I am using django's function __search data=request.POST.get("data") ...
0
votes
0answers
27 views

'hotkeys' is not a valid tag library

I am getting this error while trying to run django. 'hotkeys' is not a valid tag library: Template library hotkeys not found, tried ...
-1
votes
1answer
44 views

Django: get current domain name in setting.py

We can use $_SERVER['SERVER_NAME'] in php to get current domain name. Now I want to set ROOT_URLCONF in django's setting.py based on current domain name, what should I do about it?
0
votes
0answers
86 views

Django - Multiple Databases

So I'm somewhat new to the whole Django databases and maybe I just don't fully understand the Django routers talked about here: ...
0
votes
0answers
41 views

python Django - update data set to reflect updates in database

I have an application(C lang) which is updating the Database at regular interval of time. And wrote another (django)application to read the latest updated value for tat database and list it. my ...
0
votes
1answer
29 views

Installing django on two existing versions on python

I have both python 2.7 and 3.2 installed on my computer and I wanted to install django. And when I did it automatically installed django 1.4 on python 3. Is there a way I can install it on python 2.7? ...
2
votes
1answer
195 views

no module name datetime after ubuntu 13.04 upgrade

Just did an upgrade from ubuntu 12.10 to 13.04 and getting this when running django site in virtualenv (virtualenv)sysadmin@ubuntu:~/webapps/devsite/djangosite$ ./manage.py runserver Traceback (most ...
0
votes
1answer
38 views

get_absolute_url() with multiple args

models.py, urls.py, views.py I'm trying to set a get_absolute_url() function for the Entry class, but failing. I have successfully created such a function for the Category class, with only one arg, ...
0
votes
2answers
51 views

How to server Static Files with Django 1.4 on Windows?

I need to link a CSS file to a simple hmtl page and it just doesn't work! I have red the Docs and watched like 10 Videos that develop on Linux Systems, but non of them come along with the Config of ...
1
vote
1answer
34 views

apache server not using proper virtualenv with WSGI setting

I am facing a problem related to django wsgi script. I have been using two virtualenv for my two application and I have deployed these two application on my local server with different port. Apache ...
0
votes
1answer
30 views

Showing certain tags django templates

If I want to be able to show only certain tags in (say as in a forum post) using django tempalte variables how would I do that? Say the content of my post is: <div><b>Hell</div>o ...
2
votes
0answers
66 views

Python/Django 1.5 DatabaseWrapper thread error

Throwing the following DatabaseError in Django 1.5.1 (and 1.5.0) and mysql when I runserver and attempt to load a local version of the web app: DatabaseError at / DatabaseWrapper objects ...
0
votes
2answers
75 views

newline causes SyntaxError: EOL while scanning string literal

An ipad application sends this json to me and I read it by request.POST.get and then pars it by ast.literal_eval u'[\n {\n "type" : 2,\n "dateCreated" : "Wed, 24 Apr 2013 17:20:50 0100",\n ...
0
votes
0answers
32 views

Stored Procedure result to Django Model

If have a model like: class Person(models.Model): id = models.IntegerField() first_name = models.CharField(max_length=50) last_name = models.IntegerField() birthday = ...
2
votes
1answer
51 views

Django - Can we make a connection to different remote database

I am writing a Django application where I already have 1 mysql backend db configured in my settings.py. I know we can add as many db configurations as we want, but that's hard coding which I don't ...
0
votes
0answers
45 views

django-admin.py will not cooperate

I am new to Django and just trying to get it to start up. I downloaded it and it is on my path: Ryans-MacBook-Pro:website ryansaxe$ python django-admin.py startproject mysite python: cant open file ...

1 2 3 4 5 8