Django views are MVC views; they control rendering (typically through templates), and the data displayed.
0
votes
1answer
24 views
Django how to save model in view
I'm new to Django. I'm having an issue where I can't save my model in the views.py. The concept is to have an input field where a user can type in a name, then using request.POST.get('attribute_name') ...
0
votes
1answer
12 views
How to use django class based views for sending json consist of different model querysets
I have to implement autocomplete search for my two different models "Destination and Regions", so I should send json response to my template according to query results consist of my two different ...
0
votes
1answer
26 views
how I can load a model to multipleChoiceField
please y have been trying to show the table in the form, but I have not been able to do.
please clone and create database and run the project on github.
is too much code to paste here.
github: ...
0
votes
1answer
38 views
ViewDoesNotExist django
I've been working my way through the tutorials and thought that I'd understood the MVC framework. I have three models, two of which (Guests, Bookings) are populated. I can call data from Guests no ...
2
votes
1answer
28 views
negative integers in django
I'm trying to make a query in a postgresql database.
I need to multiply by -1 the id before the query.
def getRelation(request,id):
#id = id * -1
#osmObject = ...
0
votes
1answer
31 views
URL reversing not working in django when using arguments
I'm really stuck with this one.
I have the following in my urlpatterns:
url(r'^user/$', UserView.as_view(), name='farmauth-user'),
url(r'^user/(?P<id>\d+)/confirm/(?P<token>\w+)/$', ...
1
vote
0answers
34 views
Generating a single queryset with filtered summary data across a foreign key?
I have a small Django project to learn with (it's a web UI for the RANCID backup software) and I've run into a problem.
The model for the app defines Devices, and DeviceGroups. Each Device is a ...
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 = ...
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
3answers
45 views
How can I show only last entry in django?
I'm using Django 1.5.1. I have a ImageModel for top of my first page.
How can I show only last entry of this model?
#model.py
class Vitrin(models.Model):
title = ...
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 ...
3
votes
4answers
30 views
Factorizing a header menu in Django template
I'm building a website using django with a header on top of every page, which basically is a menu with a few links, constant throughout the pages.
However, depending on the page you're on I'd like to ...
-1
votes
2answers
28 views
Using two parameters to delete using a Django DeleteView [closed]
I am trying to delete a report from a particular client, so currently in my url.py i am passing the client id and the report id, hoping to delete report Y from client X. I could have done this using ...
1
vote
1answer
17 views
User Types In Django using the same login and registration form
I've been hitting my head for the best way to implement this. I want to create two user type in my django site: Free and Premium users. Both users will register through the same registration form and ...
0
votes
0answers
19 views
CSRF Failed: CSRF cookie not set
I am using the django rest framework to perform API calls via IOS
and I get the following error
"CSRF Failed: CSRF cookie not set."
Here's my django API code:
class LoginView(APIView):
"""
...
0
votes
1answer
14 views
Django imageField not validating - Why?
I have a model:
class PartnerPrefs(models.Model):
partner = models.ForeignKey(Partner)
theme = models.IntegerField()
email = models.EmailField()
logo_file = ...
0
votes
1answer
47 views
Django - logic behind displaying relational tables in template
I have multiple related tables defined in my Django models:
# first models.py
from django.db import models
class Character(models.Model):
first_field = models.DateTimeField()
second_field = ...
0
votes
1answer
15 views
Django: how to display form errors for each model object
views.py
def add_phone(request):
user=request.user
try:
phone = Phone_info.objects.get(user=request.user)
except:
phone = None
save_msg = ''
form_error = False
...
-2
votes
0answers
27 views
django is giving exception value error : exception need more than 1 value to unpack
im using django ajax and django to dynamically create a drop down based on the value of another drop down actually code works fine but when i'm using split function to split the value coming ajax, it ...
0
votes
2answers
29 views
QuerySet, Object has no attribute id - Django
I'm trying to fetch the id of certain object in django but I keep getting the following error
Exception Value: QuerySet; Object has no attribute id.
my function in views.py
@csrf_exempt
def ...
-1
votes
1answer
35 views
Django views: optimize code [closed]
I have a problem with my views.py. I repeat a lot of code, I wonder if it is possible to optimize.
Here is my code:
Profile:
def profile(request, id):
if 'person' in request.session:
...
1
vote
2answers
44 views
How does one protect his AJAX views with Django?
I'm using a private view in my Django project for an AJAX request.
def HereIsSomeJSON(request, label):
if not request.method == "POST":
raise PermissionDenied
# Here is the job of my ...
0
votes
1answer
31 views
How to refresh the data without reloading the page using data-bind
I am using knockout.js in my django project and having problem in post method in javascript. I tried to rebind or re-initialized the list but it didn't work.
Eg: I am showing table data with 10 ...
1
vote
3answers
42 views
django:ValueError need more than 1 value to unpack
I'm using ajax and django for dynamically populate a combo box. ajax component works really fine and it parse the data to the view but int the view, when i'm using the spiting function it gives me a ...
0
votes
0answers
29 views
Integer validator not throwing the error message
forms.py
def clean(self):
cleaned_data = self.cleaned_data
if 'phone_daytime' in cleaned_data:
validate_integer(cleaned_data['phone_daytime'])
raise ...
0
votes
1answer
20 views
Djangonic way to get second order DB-info in Django?
I'm messing around with my first Django site and so far it's going good. I am now facing the challenge of getting some information from the DB. My model looks like this:
class ...
0
votes
1answer
37 views
What's the most efficient way to render a template that changes based on primary key of a table (Django)
I am creating a search page where users can search by parameters. The search parameters change based on the category they are searching in. There are approximately 100 categories and each has its own ...
0
votes
0answers
32 views
Django: use render to string to proxy a form
Its possible in django use render_to_string in views.py to render a form maintaining the same behavior of a classic form (eg: validation server side)?
I wont use ajax for post.
MORE DETAILS:
I ...
0
votes
1answer
40 views
Why isn't my Django template properly calculating the length of my collection?
In my view:
posts = Post.objects.all()
print len(posts)
prints '2'
In my template
{{ posts|length }}
results in '0' in the browser
1
vote
1answer
28 views
Passing variables from views.py into script.js
I was wondering whether or not it was possible to pass variables from render_to_response in views.py into script.js,
render_to_response('appname/basic.html',{'var':somevariable})
I basically want ...
-2
votes
1answer
32 views
Passing a variable from view to HTML [closed]
Assuming in views.py I have the variable:
a = 5
And I want to include this information in my HTML page where I can do something like:
{%if a = 5%}
Do something.
{%endif%}
I was wondering what ...
0
votes
1answer
28 views
How to distinguish HTML elements and posts in a multi user app using Django
I am developing a multi-user application using Django where each user has a div that he can navigate through the app as he wishes.
The problem is that i don't know a good and efficient way to ...
-1
votes
1answer
44 views
Table relationships Django
I already have,let's say,a table named "Domain" and a table named "Nodes" and i want to make a dependecy on my webinterface where --Domain have Nodes-- and --Nodes can't exist without my Domain--!In ...
1
vote
4answers
47 views
How to find out if an image is loaded?
I have a django project which is running (for example) on localhost:8000.
I have an image in this address localhost:8000/static/test.jpg . A user may open just this image by going to it's url and not ...
-1
votes
2answers
30 views
Phone_info matching query does not exist
views.py
def add_phone(request):
user=request.user
try:
phone = Phone_info.objects.get(user=user.id)
except Phone_info.DoesNotExist:
phone = None
phoneForm = ...
0
votes
1answer
41 views
Django testing not getting connected to the database
I am a newbie to django. In my first django app, I am testing one of my view to check login. Here is my view:
from testprjct.testapp.forms import LoginForm_form
from django.contrib import auth
def ...
0
votes
1answer
26 views
When I catch the data in my views, how I clean the data?
Example:
url(r'^/users/(?P<usr>[0-9]+)/$', 'home.views.who_user'),
How I have to clean usr in my view?
0
votes
2answers
21 views
Best way to implemente confirmantion and alert messages
I was wondering if you guys could share with me your strategies to display alert and confirmation messages in Django. I'm really not sure what would be the best way to achieve this. Do you keep a ...
0
votes
1answer
29 views
Django - Functions in models and views don't return correct Boolean value
I am creating a django app/website and am in trouble with some Boolean results I don't understand.
In my models, I have a Article class with 2 functions :
class Article(models.Model):
#some vars
...
0
votes
1answer
24 views
Import xls file and store thedata into database in Django
views.py
def contact_list(request):
importform = ImportExcelForm()
if request.method == 'POST':
importform = ImportExcelForm(request.POST, request.FILES)
if ...
0
votes
1answer
23 views
Multiple forms on one page - one not working: Django
I am trying to have two forms on a (paginated) page.
They display just fine if I hit "save" on relevance_form, I can see this change in the admin.
For event_form, however, nothing happens and after ...
0
votes
0answers
19 views
ModelForm: upload file in chunks in custom path
I have the following situation:
models.py
class ShapeFile(models.Model):
name = models.SlugField()
file = models.FileField(upload_to=get_upload_path)
def get_upload_path(instance, ...
0
votes
1answer
34 views
django model returning multiple values
i have to convert some of my code from django to PHP
here is the sample code:
def loadProduct(id=0)
if id==0:
product=BaseProduct.products.all()[0];
else:
product = ...
1
vote
0answers
27 views
Variable interpolation in python/django, django query filters [duplicate]
Here is an example query taken from the Django API.
Blog.objects.filter(name__startswith='Beatles')
How would I programmatically replace "name" in the filter above? If I were ...
0
votes
1answer
18 views
Caught VariableDoesNotExist while rendering: Failed lookup for key [time_filter] in u'[{},
views.py
def when(request):
user = request.user
report = Report.objects.get(user=request.user)
reportform = ReportForm(instance=report)
settings = ...
0
votes
2answers
41 views
Passing variable to a form for display in django
views.py
def when(request):
user = request.user
report = Report.objects.get(user=request.user)
reportform = ReportForm(instance=report)
settings = ...
0
votes
1answer
27 views
How do I pass a PK or slug to a DetailView using RequestFactory in Django?
I'm trying to use RequestFactory to test a DetailView with the following test case:
def test_device_homepage(self):
request = self.factory.get('/devices/1/', {'pk': 1})
response = ...
0
votes
2answers
26 views
How to play a audio file through http response in django(python)
I want to make request to url and django view should read the file and send the http response back to play the same file in browser.I got the following code but it does't play anything please anyone ...
0
votes
1answer
24 views
how to pass date variable into form
views.py
def when(request):
user = request.user
report = Report.objects.get(user=request.user)
reportform = ReportForm(instance=report)
settings = Settings.objects.get(user=request.user)
...
0
votes
1answer
22 views
'User' object has no attribute 'date_format'
views.py
settings=Settings.objects.get(user=2)
if user.date_format == '0':
date=datetime.datetime.strptime('%m/%d/%Y').strftime('%d/%m/%Y')
else:
...



