Django views are MVC views; they control rendering (typically through templates), and the data displayed.
0
votes
2answers
31 views
Custom Django workflow
I'm a newbie in Django and have written the login/registration procedures.
Currently, on clicking the submit button to login, I'm navigated to a page www.example.com/login. Similarly, when I try to ...
0
votes
2answers
25 views
validating white space,empty space and integer
How to validate white space,empty space and integer in a single method.Consider my forms.py
class UserprofileForm(forms.ModelForm):
class Meta:
model = Userprofile
...
0
votes
2answers
28 views
how does the “Favourate” button in StackOverFlow works?
i am creating a forum for my website. i would like to know how does the "This is your favourate question" button in StackOverFlow webpage(ie this website) works?
i am using django.
i created models ...
1
vote
1answer
26 views
File downloaded always blank in Python, Django
I am using the following view in Django to create a file and make the browser download it
def aux_pizarra(request):
myfile = StringIO.StringIO()
myfile.write("hello")
...
0
votes
1answer
24 views
Check existing password and reset password
views.py to save the password:
elif 'reset_password' in request.POST:
if request.POST['reset_password'].strip():
saveuser = User.objects.get(id=user.id)
...
0
votes
1answer
20 views
Django datetime not work as expected
I need to calculate and store date one year in the future if some field is True. But seems that datetime doesn't work as I expect. date field is populated correctly but featured_to_date field stay ...
0
votes
1answer
31 views
Django building the login interface
I'm new to Django and needed some help regarding the login forms. Here's what I've done.
My templates has index.html
<form class="form-signin" action="/login" method="post">
{% csrf_token ...
0
votes
0answers
40 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 = ...
0
votes
2answers
31 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
44 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
21 views
Change project wide varibles
I have built a web application using Django that, among other things, can send emails to clients. When I'm in development mode, I don't want any my testing emails to actually go to the clients. ...
0
votes
1answer
26 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
13 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
27 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
29 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
38 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
36 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
46 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
29 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
31 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
33 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
18 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
21 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
17 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
32 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
31 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
36 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
45 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
34 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
46 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
21 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
33 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
45 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
32 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
42 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
22 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
...



