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.
0
votes
0answers
9 views
Django File Handling
I am creating an thumbnail of a photo using PIL and storing it in S3 by this method-
image = Image.open(image)
image.thumbnail(thumbnail_size, Image.Antialias
thumbfile = StringIO()
...
0
votes
1answer
19 views
Template logic not functioning properly
template.html
<tr><td>
{% if place %}
<input type="checkbox" id="select_all"/>Display all<br />
<hr style="width: ...
1
vote
3answers
2k views
How to create custom permission (user role) in Django?
I have simple question. How to create user role in Django without creating it in DB manually ?
EDIT: I need to create specific permission. So only users with this permission can change specific field ...
7
votes
1answer
585 views
Python multiple inheritance function overriding and ListView in django
I created a class that subclasses ListView and two custom mixins which have implemented a get_context_data function. I wanted to override this function on the child class:
from django.views.generic ...
0
votes
2answers
13 views
a strange bug on template's url tag error
I'm using django 1.4.5.
within my templates, I've included {% load url from future %}, and have followed the standard pattern for referring to urls accordingly.
say, in the `urls.py':
url(
...
0
votes
1answer
9 views
efficiently loading jquery and javascript files in django templates
In one of my django projects i am using lots of custom jquery scripts and lots of open source jquery plugins. Now if i load all the jquery scripts in my base template, I will be loading a lot of ...
1
vote
0answers
25 views
Django not writing errors to log files in production
So i am trying do deply my django app + nginx (fastcgi). I am trying to write all my normal django output (that i usually get when developing the app) but in production since i dont see the output, i ...
0
votes
0answers
17 views
Creating custom permissions
How will i hide the "Log" option for any users other than Admin?
===========================
default_panel = 'Log'
def get_default_panel(self, request):
is_admin = ...
1
vote
1answer
12 views
Cancel form file upload submission
I work on a file upload form with some additional data and want to have a cancel button.
My site is running on Django. I submit the form over the normal way with a submit button without Ajax but I ...
2
votes
1answer
174 views
How can I keep line breaks when sending data from one django application to another
A user write a code in a textarea (HTML) I post the form like this:
<form id="codeid" method="post" enctype="application/x-www-form-urlencoded" name="code" action="192.168.56.2:8000/api/comp/">
...
2
votes
4answers
451 views
Stuck on official Django Tutorial
I am just started out learning Python and also started looking into Django a little bit. So I copied this piece of code from the tutorial:
# Create your models here.
class Poll(models.Model):
...
0
votes
0answers
25 views
Restart Gunicorn_django via Fabric
I'm building a Django application and I decided to investigate Fabric for automating deployment. I've got it mostly working, but it fails at the last step, and I can't seem to puzzle out why.
I'm ...
0
votes
0answers
29 views
Does not exist. No exception supplied error
I have the following class based view.
class AllPluginsView(ListView):
queryset = get_models(get_app('plugins'))
template_name="console/plugins/plugins.html"
context_object_name = ...
-1
votes
1answer
23 views
Insert string element in href?
I'm trying to do this :
{% for a,b in wireline_list %}
<a href=b>{{ a }}</a> ->
{% endfor %}
But I can't find any way of putting b in href. Because this syntax obviously ...
0
votes
0answers
9 views
migrate user and userprofile to new user in django 1.5
I tried to follow instructions in answer here but didn't work. I bet due to the following:
We have an existing User class is models.py which is a proxy:
class User(auth_models.User):
"""
...
0
votes
1answer
14 views
Get scrollTop, scrollLeft etc. from element with selenium
In a Python/Django test for an element, that is scrolled via scrollTop, I want to get the value of scrollTop.
In JavaScript I get this value via
element.scrollTop
In Python I tried the following:
...
0
votes
1answer
22 views
Authenticating a custom user in Django 1.5
I have a custom user in a Django 1.5 project, which uses the email field as the username:
class MyUser(AbstractUser):
my_custom_field = models.CharField(max_length=20, blank=True, null=True)
...
0
votes
1answer
19 views
Subclassing AbstractUser in Django for two types of users
I'm developing a school database system in Django 1.5, and was planning on having a number of different user types (Student, Staff, Parent) which subclass AbstractUser (actually, another abstract ...
0
votes
0answers
6 views
spell check with haystack
I am getting None in spell check
first i made changes in settings.py
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.solr_backend.SolrEngine',
'URL': ...
1
vote
1answer
23 views
CreateView is not returning an HttpResponse
I have the following view which extends the base CreateView:
class PeopleImportCsv(FailedLoginMessageMixin, CreateView):
model = CsvFile
form_class = CustomerCsvImportForm
template_name = ...
0
votes
1answer
23 views
get image from image.files with objectid
I have a problem with mongoengine. I get an objectid of an image in image.files collection. How could I get the image in django, just like image.files.objects(pk=objectid).first()?
Is there any apis ...
0
votes
1answer
60 views
+200
Programmatically select the first suggestion in django-autocomplete-light
How can I select the first given option? I'm feeding the autocomplete widget with the data from reverse geocoding results (city) basing on user's location. I have a database with cities and I need to ...
0
votes
2answers
20 views
Django count matches query with contains
I want to show in order (as a ranking), users who have more in common with the user logged in.
I have this code:
me = User.objects.get(pk=sesion)
keywords = me.likes
result = []
for keyword in ...
0
votes
1answer
26 views
How to get the id (not pk) from mongoengine models?
my models
class Result(Document) :
id = IntField()
turn = IntField()
url = StringField()
the id is not the primary key.
As you know, mongodb will generate a key named '_id'. So I use ...
0
votes
1answer
12 views
How to filter Haystack SearchQuerySets by related models
How do you filter/join a Haystack SearchQuerySet by related model fields?
I have a query like:
sqs = SearchQuerySet().models(models.Person)
and this returns the same results that the equivalent ...
0
votes
0answers
14 views
how to get the userinfo using mod_auth_cas from session?
I use mod_auth_cas as the cas client,and here is my conf file in http.conf of apache:
CASDebug On
CASValidateServer Off
CASCookiePath /var/cache/apache2/mod_auth_cas/
CASLoginURL ...
0
votes
1answer
13 views
modelForm giving a validation error on file upload
I'm trying to do a bare bones files upload, but there seems to be a problem while validating the model form.
Here's my model:
class quiz(models.Model):
user = models.ForeignKey(User)
title = ...
0
votes
0answers
7 views
Django 1.5 Markdown deprecation
When using the Markdown libraries I seem to get the following error:
Error in 'markdown' filter: Django does not support versions of the
Python markdown library < 2.1.
As an example, it ...
1
vote
2answers
23 views
Django raw query filter by year and month
I need to write django raw query for filtering year and month. for that I have tried following code.
cursor = connection.cursor()
cursor.execute('SELECT SUM(work_time) AS sum FROM ...
1
vote
1answer
42 views
django queryset to query the latest revision only
If have two django models: one storing pages and an other the corresponding content revisions. Now if I search for a term I only want to consider the latest revision of each page.
from django.db ...
0
votes
0answers
48 views
how to use analyzer “ik" in haystack
As we know, ik analyzer is a plugin of elasticserach. When I use haystack to create indexes, I just need type python manage.py rebuild_index. I dont know if it create indexes through analyzer. If not, ...
0
votes
0answers
24 views
trying to implement date facets hay-stack
I'm trying to implement a faceted search on date
this is my query:
sqs = SearchQuerySet().facet('job_location').facet('post_type').facet('job_type').facet('company_name').date_facet('start_date', ...
0
votes
1answer
18 views
how to use a wordpress blog theme on a django-based website
I've built a website using django, and now I want to build a blog for my website at url domain.com/blog. I need to create it in wordpress and then import it to django, using the wordpress theme.
The ...
0
votes
0answers
15 views
Error accessing dashboard or admin interface in Google App Engine
I am unable to access dashboard/admin interface of Google app engine on local development environment which could be access using localhost:8000/_ah/admin/.
It throws following error:
Traceback ...
0
votes
3answers
50 views
Python doesn't interpret UTF8 correctly
I know similar questions have been asked a million times, but despite reading through many of them I can't find a solution that applies to my situation.
I have a django application, in which I've ...
0
votes
0answers
20 views
django celery - worker dying after receiving 1000's of tasks at a time
I am running a script that generates nearly 10000 objects. On save of each object, a celery task will be called, so in just 1 to 3 min, celery is receiving 1000's of tasks and its worker is dying ...
0
votes
0answers
16 views
Localization Select() in ModelForm and Custom RadioSelect() Label
I'm searching a way to have localized version of my Select() with Deciaml Values. In Germany we have , as our Separator but Django uses .
Everything with i18n is activated but still I won't get the ...
0
votes
1answer
10 views
Form-based Kerberos authentication in Django
I have got an Django application that uses the RemoteUserBackend in combination with Apache and mod_auth_kerb to authenticate against Kerberos.
However, this has some drawbacks:
There is no proper ...
0
votes
1answer
18 views
How to do a background check on entry into the m2m communication in the query?
There are models:
class MyObject (models.Model):
name = models.CharField ()
class Day (models.Model):
day = models.IntegerField ()
class Month (models.Model):
month = ...
0
votes
1answer
24 views
limiting the queryset for ManyToMany MultipleSelect in Django admin
I have a model that looks like this:
class Event(models.Model):
event_dates = ManyToManyField("EventDate")
#...
class EventDate(models.Model):
event_date = DateField()
#...
...
0
votes
1answer
18 views
white space validation not working
forms.py
class PhoneForm(forms.ModelForm):
def clean(self):
name1 = self.cleaned_data.get("name1")
number1 = self.cleaned_data.get("number1")
name2 = self.cleaned_data.get("name2")
...
0
votes
1answer
8 views
Error on publishing a Django-CMS 2.4 page
I have just updated my site from Django-CMS 2.3 to 2.4, and from Django 1.4.3 to Django 1.5.1.
The site runs fine on my dev environment; at first it gives me the welcome to Django-CMS page (with the ...
-1
votes
0answers
22 views
How do i generate pdf before saving the form?
Trying to generate pdf bofore saving the form. Need help.
class PDFView(View):
def get(self, request, **kwargs):
template = get_template("pim/pdfview.html")
ctx = {}
...
0
votes
0answers
11 views
nginx error while trying to serve django page
I'm new at server setup. I'm trying to set up an EC2 instance to serve a Django app through nginx. I'm able to run and connect to the Django app using
python managy.py runserver 0.0.0.0:8000
...
0
votes
0answers
28 views
Query to filter by alphabetic order
views.py
def type_list(request,type_id):
user = request.user
try:
type_list = Types.objects.get(user=user.id, id=type_id)
except:
return ...
0
votes
1answer
17 views
Django tastypie and backbone album app?
I'm building an album app in django, I have two django model
class Album(models.Model):
name = models.CharField(max_length=100)
family = models.ForeignKey(FamilyProfile)
created_by = ...
1
vote
2answers
301 views
phpmyadmin logs out after 1440 secs
I am using mysql as my db for a Django project. In my local development machine(Its a Ubuntu) I have installed phpmyadmin to use mysql. I am facing a problem with phpmyadmin repeteadly i.e whenever ...
0
votes
2answers
1k views
Multiple level template inheritance in Jinja2?
I do html/css by trade, and I have been working on and off django projects as a template designer. I'm currently working on a site that uses Jinja2, which I have been using for about 2 weeks. I just ...
0
votes
0answers
15 views
Error 500 and other website's content
I have some small django projects working on the same server with apache and mod_wsgi. I installed another one project with virtualenvironment and set settings for it in Apache conf file:
...
-1
votes
0answers
18 views
Load HTML if User belongs to a certain group
I want show a link only if the user belongs to a group.
html:
{% if user.is_authenticated %}
{% users_in_group = Group.objects.get(name="boss").user_set.all() %}
{% if user in users_in_group ...


