0
votes
1answer
12 views

Not able to show the selected form choice in template

forms.py PERSON_ACTIONS = ( ('1', '01.Allowed to rest and returned to class'), ('2', '02.Contacted parents /guardians'), ('3', '02a.- Unable to Contact'), ('4', '02b.Unavailable - ...
2
votes
1answer
16 views

Checking if an item is contained in a ManyToManyField (django)

So I have a ManyToManyField relationship between Item1 and Item2. On a webpage, I want to display one of two messages based on whether the two items are connected or not. I'm just not sure how to ...
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 ...
0
votes
1answer
27 views

show form data in template

In my application,i am keeping some choices in forms.The choices are check box input and user can click and save the choices.In database saved choice are stored as integer like 1,2,3.How to query the ...
0
votes
1answer
15 views

How getting ManyToManyField(“self”) in the template?

I don't figure out how getting the value of sequels in the template. here models.py class Anno( models.Model ): anno = models.CharField( max_length=4 ) def __unicode__(self): return ...
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: ...
0
votes
1answer
13 views

Need clarification in Django mail sending scenario

I build a mail sending function in django.I did it by referring django Doc . In doc to specify a email backend,need to add this line in settings.py EMAIL_BACKEND = ...
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
18 views

query the data and render to display

models.py class ReportPerson(models.Model): report = models.ForeignKey(Report) name = models.CharField('Name', max_length=100) def __unicode__(self): return self.name views.py ...
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 = ...
0
votes
0answers
65 views

Django pagination with ManyToMany image gallery

I am trying to use pagination to browse each image stored in a "Blog." Here is the relevant code: models.py class Blog(models.Model): ... slug = models.SlugField(max_length=100, unique=True) ...
0
votes
2answers
32 views

date validation giving error “strftime' is not defined”

I am trying to validate date with two different input form.I don't know i ma doing wrong. forms.py class ReportForm(forms.ModelForm): manual_date = ...
0
votes
2answers
60 views

How do I access a value from a foreign key in Django template

I have read all the related threads and have exhausted my research and nothing I do seems to work. I'll include the relevant code: models.py class Blog(models.Model): title = ...
0
votes
2answers
22 views

Change app label of groups in Django 1.5

I have extended the User model, but now the new user model is in an app called "account" which gives all models inside this app the app label "account". The Django model "Groups" still has the app ...
0
votes
1answer
50 views

Django reverse returning empty string with unicode slug

I can't seem to figure out what is wrong with get_absolute_url of my model: @models.permalink def get_absolute_url(self): print self.slug return reverse('CategoryView', ...
0
votes
0answers
40 views

how to save html element through django

I am new user of django.I am developing an app in which,i want to save the checked options from HTML into database. template.html {% for option in options %} <input type=checkbox>{{ option ...
0
votes
1answer
23 views

Django Filter data from multiple Models

Here I used 4 models one is base models another three are derived model derived from base models. I want to filter data between these three models in which reference id is common one. I add code below ...
1
vote
1answer
25 views

issue related to showing data in template

models.py class ReportType(models.Model): report = models.ForeignKey(Report) title = models.CharField('Incident Type', max_length=200) def __unicode__(self): return self.title ...
0
votes
1answer
33 views

Save radio button values

I am using model form, TYPE_SELECT = ( ('0', 'Live'), ('1', 'Test'), ) class ReportForm(forms.ModelForm): type_select = forms.ChoiceField(widget=forms.RadioSelect( ...
0
votes
2answers
37 views

template logic not working

template is {% for type in types %} <h1>{{type.title}}</h1> {% for field in typelist %} <label><input type="checkbox" name="{{field}}">{{ field }}</label><br ...
0
votes
1answer
26 views

Django errors submitting imagefield in form

I have a django form I'm trying to submit to my server. When the submit button is pushed, it sends a post request and two objects (a stream_id and an image) are sent to the view function. I can see ...
1
vote
2answers
48 views

build check box in django

views.py def what(request): user = request.user report = Report.objects.get(user=user.id) reportnotesform=ReportNotes(instance=report) reportform = ReportForm(instance=report) ...
1
vote
1answer
24 views

Why custom templatetags in django-basic-apps use get_model?

Why the custom templatetags get the model using get_model in django-basic-apps instead of importing directly? Is there any specific technical reason for this? For ex: in ...
0
votes
1answer
17 views

i try to get the group (manytomany) of user but throws me int() argument must be a string or a number, not 'ManyRelatedManager'

I use the model by default: User and Group, in my model if I use a = request.user.groups.all in my template appears: [<Group: jefes>] but I only need "jefes" and not [<Group: ...
0
votes
1answer
31 views

Implementing Subsets of Foreign Keys in Django

I'm building a forum-style website in Django, and have been running into some issues in my design structure. The relevant code (from my model) looks like: class Thread(models.Model): post_count = ...
0
votes
2answers
35 views

Both login and signup in same view in Django 1.5

I want my login and sign up views in same template. Just like this template: <h1>Login</h1> <form method="post" action=""> {{ form.as_p }} <input type="submit" /> ...
0
votes
2answers
51 views

Combine CreateView with DetailView in Django 1.5

In my app I need to create products in a shop. So I have a model Shop and a model Product. I can see details about my shop in a DetailView ShopDetail. Now I need a CreateView in order to create ...
0
votes
0answers
18 views

View pictures from the template via models.FilePathField

I'm not sure this is the correct method to use, so I'm open to suggestions. Practically I want to display the image retrieving the path where they are saved from the database. In a class in models.py ...
0
votes
2answers
36 views

Template logic not functioning properly

template.html <tr><td> {% if place %} <input type="checkbox" id="select_all"/>Display all<br /> <hr style="width: ...
0
votes
1answer
52 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 model cross reference in templatre

Ok So my mind is going to mush... I have 2 models. One is a card location and the other holds card types. I've got a view and template which display's the cards in a specific chassis. What I can't ...
0
votes
1answer
37 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
30 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
35 views

Django image file not getting uploaded

models.py class Report(models.Model): user = models.ForeignKey(User, null=False) photo_files_attached = models.BooleanField('Photos', default=False) forms.py class ...
0
votes
3answers
55 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 = ...
1
vote
1answer
29 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
1answer
9 views

Get value in template of ManyToMany ForeignKey field

I need to display the values of the categories field from the class Analiza from the models below in a template. class Category(models.Model): name = models.CharField(max_length=60) def ...
0
votes
1answer
40 views

How to validate number in django

I am learning Django,looked into django validation but the below type i want.searched in google no result. In my app,their are two character fields,i want it to be validate so that the conditons are, ...
0
votes
1answer
24 views

django formset causing ValidationError

I am having trouble with using django formset. Making a POST request is causing ValidationErrors with the form. I looked at the other posts on SO and but none of the answers worked for me. Any ideas ? ...
0
votes
2answers
30 views

Variable which is a database query doesnt render properly in template

My template doesnt render the key , values for the variable table which is a dictionary. {% for key, value in table.items %} <p> {{key}} : {{value}}</p> {% endfor %} The was how the ...
0
votes
2answers
51 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
32 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
21 views

check box always in unchecked mode after page reload

forms.py Date_Format = ( ('0', ' dd / mm / yyyy'), ('1', 'mm / dd / yyyy'), ) Time_Format = ( ('0', ' 12 hour AM / PM '), ('1', ' 24 hour '), ) class SettingsForm(forms.ModelForm): ...
0
votes
2answers
45 views

numeric validation in form in django

forms.py class PhoneForm(forms.ModelForm): fields = ['user','name1','number1','name2','number2','name3','number3','emergency','emergency_number'] def clean(self): cd=self.cleaned_data ...
0
votes
2answers
26 views

Manage pages in database in Django 1.5

Is it possible to organize your urls.py with a Django model? I would like to create a admin interface to manage pages, and output the pages as links in the navigation, but I will run into problems ...
0
votes
1answer
48 views

Django edit and update data with MySql

In my website, each user has their own login id and password, so if a user is logged in, he can add, edit and update his record only. models.py is class Report(models.Model): user = ...
0
votes
1answer
30 views

Displaying FK's in Django forms as a select field properly

I have two Django models: from django.db import models class Show(models.Model): show_title = models.CharField(max_length=250) def __unicode__(self): return self.show_title class ...
0
votes
1answer
16 views

How to hide a model charfield in a template?

can anyone tell me how to hide a model charfield in a template. i tried many examples but those works on just regular input textbox. i am using crispy forms and i need to hide or show the text box on ...

1 2 3 4 5 9