1
vote
1answer
22 views

Django: How to include a view from within a template

I'm new to django and I was wondering what is the best/recommend approach to include a view (with certain logic, and its resulting HTML) from within a template. My concrete example is as follows: I ...
0
votes
1answer
13 views

Django Class view - only display if column 'admin' contains 1

I have been working on extending the following project: jquery file upload form & i want to only display items from the database that have the value 1 in a column called admin. Can someone tell ...
1
vote
2answers
16 views

Having trouble with Try/Except logic. Getting an UnboundLocalError

I have a view that assigns an object to either an Event or a customEvent. It tries to do Event first, and should do customEvent if it fails. The code I have at the moment is: @login_required def ...
1
vote
0answers
21 views

UpdateView creates a new object instead of updating existing

I read the django-docs but still can't figure it out, what am I missing and doing wrong? When I go to the url: url(r'^(?P<calendar_id>\d+)/edit-event/(?P<pk>\d+)/$', ...
-1
votes
1answer
15 views

Performing Background Tasks in Django

I need help with the following problem. I am working on a Django site. My page requires users to complete a form. My view then processes this form information. Part of this involves processing large ...
0
votes
1answer
12 views

save date in one format in database - Django [duplicate]

forms.py DATE_INPUT_FORMAT = ( ('%d/%m/%Y','%m/%d/%Y') ) class ReportDatetimeForm(forms.ModelForm): manual_date = forms.DateField(input_formats = DATE_INPUT_FORMAT, ...
0
votes
0answers
9 views

How can i create a child process of my celery application that runs a function that monitorize it?

I have a monitor function that basically connects directly to the broker(rabbitmq) and listens to different types of events and return a message accordingly (task in progress, task successful....) . ...
0
votes
1answer
22 views

How to execute code in Django if an error occurs?

One of the views that I call works with two database tables. It attempts to find an object in the first table. If the object isn't found, I get a Server Error (500). I'm not sure what the code would ...
1
vote
0answers
47 views

django rest nested relation in post/put

I am new in django rest api developement. I have two models one is category and another is subcategories. Here is my models class Category(models.Model): title = models.Charfield() ...
0
votes
2answers
24 views

How to write view from ModelChoiceField response?

I'm new to Django forms and am getting hung up on something that seems like it should be very simple. I want to create a dropdown selector that directs users to detail pages, one for each year. In ...
0
votes
1answer
21 views

Add data to ModelForm object before saving

Say I have a form that looks like this: forms.py class CreateASomethingForm(ModelForm): class Meta: model = Something fields = ['field2', 'field3', 'field4'] I want the form to ...
1
vote
4answers
94 views
+100

data format value changes in database

views.py def when(request): """""""" if not report.manual_date: report.manual_date = datetime.datetime.now() if int(dateformat): date = ...
0
votes
1answer
23 views

Django queryset all fields of foreign key

I am looking for an elegant and efficient way to pull data out of two tables that have a one-to-one relationship. Here are my models: class Contact(models.Model): name = ...
-2
votes
1answer
35 views

Django Datepicker calculate age

I have a form that allows the user to set the date of birth via a datepicker. How can I calculate the age after the date is selected after the user selects the date in the web page? Kind of stumped ...
1
vote
1answer
23 views

Display forms choice in template-Django

On the template, when I call person.health_issue, I am getting '1','2' instead of 'Abdominal pain','Anaphylaxis'. How to display the value ('Abdominal pain','Anaphylaxis') instead of the code(1 or2 ...
0
votes
1answer
22 views

How order the element in the case I pass them whit “get_object_or_404” from views

I want to order "film" of "regista" ( {% for film in regista.film_set.all %} ) and "sequel" ( {% for sequel in film.sequels.all %} ) by "anno", but I don't know how I have to do....Thanks fo ...
1
vote
2answers
25 views

How to pass one-to-many relationship to context on objects.all() lookup as iterable

I'm having trouble trying to wrap my head around this. many-to-one relationships are well documented, but I can't find an example on how to pass all of the relationships of a model.objects.all() ...
0
votes
2answers
31 views

passing variables in django forms

I'm writing my first django app and I'm in trouble. This is my sitiuation: I split a track in diferent ways and I need to show every one in an html page with a form. The user must fill the form about ...
0
votes
1answer
22 views

Order template when using _set.all

I want to order some element of template by "anno" but I don't know how or where (if from views or template). I tried whit |dictsort: but I think i've miss something or wrong something else. Could you ...
2
votes
2answers
37 views

Django ecommerce website huge product page intial load time (wait)

I'm just a starter in everything Django related so I apologize upfront for my confusing explanations. I've been trying to resolve some page load issues on a Django based website with an attached ...
0
votes
1answer
17 views

Not able to send email to more than 2 email address

models.py class FollowerEmail(models.Model): report = models.ForeignKey(Report) email = models.CharField('Email', max_length=100) views.py def what(request): """""" follower = ...
0
votes
1answer
24 views

send email to multiple email address

views.py follower = FollowerEmail.objects.filter(user=report_id) list=[] for email in follower: list.append(email.email) '''''' '''''' if 'email' in request.POST: ...
1
vote
1answer
23 views

How would I make Django form fields have children?

I am trying to display a form with a bunch of fields. I am trying to group the fields together so there is a parent field and then some child fields underneath the parent field. So what I have done ...
0
votes
1answer
17 views

send email to bcc and cc in django

views.py if 'send_email' in request.POST: subject, from_email, to = 'Parent Incident Notification',user.email, person.parent_email html_content = ...
0
votes
1answer
14 views

Easy way to implement StackedInlines on views like Admin - Django

is there any package like Admin StackedInline to implement on frontend i've used django-formsets but little complex ! Eg : For Question and Answers App ( create-read-update-delete )
2
votes
0answers
17 views

Django Annotate Not Grouping Unless I Add Values()

Python 3 & Django 1.5.1. I want to get a QuerySet object, that groups people by a date. The date is pulled in from a ForeignKey, so if I use values() in the query, it doesn't return the date but ...
0
votes
1answer
26 views

How to set cookie in Django and then render template?

I want to set a cookie inside a view and then have that view render a template. As I understand it, this is the way to set a cookie: def index(request): response = HttpResponse('blah') ...
1
vote
1answer
81 views

How to include pointers to the parent models referenced in formsets of child models?

I have a formset that relates to a model that uses multi-table model inheritance. I'm getting the following error when the form is submitted: MultiValueDictKeyError "Key 'form-0-mediaitem_ptr' not ...
0
votes
1answer
18 views

ImageField in Django

I am attempting to build a basic database of song information, regarding artists, songs and albums. On my page for any given album I am attempting to display the album art for a given album. I am ...
0
votes
1answer
22 views

Django Error:: global name 'HttpRequestRedirect' is not defined

I am getting this error, I tried working on it a lot but cannot understand whats wrong. I am basically trying to make a signup registration that has a couple of forms to be filled Request Method: GET ...
0
votes
1answer
28 views

Not able to send email - Django

settings.py EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.gmail.com' EMAIL_PORT = 587 EMAIL_HOST_USER = 'rakil@gmail.com' ...
0
votes
1answer
36 views

Good way to prevent access to Django site if JavaScript and cookies disabled?

I'm building a Django site using responsive web design and RESS. I want to prevent the user from accessing the site if they have JavaScript and/or cookies disabled in their browser. Is the code ...
0
votes
1answer
28 views

Django Error :: Exception Type:IntegrityError Exception Value: column user_id is not unique

I dont understand what I am doing wrong!! I am getting this error everytime i click on submit. This is a simple registration form Request Method: POST Request URL: ...
0
votes
1answer
22 views

Single form, multiple models, using 3rd party application

I am looking to use two forms, and combine them somehow to validate both in one view, so the user only has to use one submit button. I am new to Django, and I am using a third party application, so it ...
0
votes
1answer
24 views

Extending Django Admin View not working

Below is the code to extend the ModelAdmin and use our own page. However, regex is not getting accepted. Below further is given the list of regex that the matched, but the one that I try to extend is ...
0
votes
0answers
27 views

Load a page with a form different times

I need to load a html page with a form as many times as a variable value. The problem is that I divide a track with different parts and I want load a page with the map of the part and a form to enter ...
0
votes
1answer
19 views

Access a list within a dict in request.POST

In my html I am dynamically generating drop-down options with the same name <form action="{% url manageCsv %}" method="post"> {% csrf_token %} <p> <input type="hidden" ...
0
votes
2answers
59 views

django views.py to call another python script

I'm new to Django. Please help me with the below. I have a User form who provides URL1 and URL2.. These URLs need to be passed to another Python script[redirects.py] which will do the Validation to ...
0
votes
0answers
26 views

adding in m2m items that have been filtered in a form with a Django Generic Class View

I have an app that has two models in it. The first is called scenario. The second is called solutions. There is a M2M between scenarios and solutions. You can have any number of solutions belonging to ...
0
votes
1answer
34 views

How to use diferents forms in a view

I'm new in django and have a question about how to use the views in a situation: I have a view which loads a track file.The track is broken down by diferent ways and I want to show every one, one by ...
0
votes
2answers
24 views

Django NoReverseMatch and Blank Page

I am using Django 1.4.5. I get an error when I access the detail of entry via admin's page. "NoReverseMatch at /admin/r/12/1/": Reverse for 'detail' with arguments '()' and keyword arguments ...
0
votes
1answer
26 views

Join template and pagination of the views

I know, I repeat myself saying I'm new in the world of programming...but i prefer say it even if I think it's obvious from my question... :) this my template: Fims.html: {% extends "Base.html" %} ...
0
votes
1answer
20 views

Given a set, I want to return a single object after excluding other objects in a django view

I want to return a single object to the template context so that I can reuse the object several times without haveing to do a query each time. Here's what I have so far: def ...
0
votes
3answers
38 views

Date ValidationError in Django [closed]

I want to block users whose premium plan has expired after 30 days(though I might change the days later). And redirect them to the payment page. I'm doing this by checking the db if the expiry date ...
0
votes
3answers
23 views

'NoneType' object has no attribute 'strftime'

views.py def when(request): user = request.user try: report = Report.objects.get(user=user.id) except: report = None settings = ...
1
vote
1answer
28 views

how to redirect loggedin in users from viewing login page in django, using generic views

i want to prevent/redirect logged in users from viewing login or signup pages, i did that through views like this def login(request): if request.user.is_authenticated(): #redirect ...
0
votes
2answers
20 views

django max folders number per user

I was thinking "Enterprise" :) In my Django 1.5 project if I will reach the maximum ext4 number of folders ext3: 31998* and ext4: 64000 And as far as I know with 63.999 folders there are problems, ...
0
votes
1answer
22 views

Django reverse() in get_absolute_url() doesn't work

I am trying to use the reverse function in get_absolute_url() and it is not finding the correct reverse match for the view. My url.py doesn't have any errors because I can access that view through the ...
1
vote
3answers
45 views

Django — Allowing Users To Only View Their Own Page

I am nearing what I think is the end of development for a Django application I'm building. The key view in this application is a user dashboard to display metrics of some kind. Basically I don't want ...
0
votes
0answers
39 views

Some problems with Paginator

I'm new in python and django, so i'm sorry for the stupid question...:) This is in views.py def attore(request, id): attore = get_object_or_404( Attore, pk=id ) # return ...

1 2 3 4 5 46