0
votes
3answers
42 views
How can i get a list of objects from a postgresql view table to display.
this is a model of the view table.
class QryDescChar(models.Model):
iid_id = models.IntegerField()
cid_id = models.IntegerField()
cs = models.CharField(max_length=10)
cid = m …
0
votes
1answer
37 views
how to insert a infomation on a table in Django
This is my form on models.py
class ItemForm(forms.Form):
itemname = forms.CharField(max_length=100)
itemwording = forms.CharField(max_length=100)
notes = forms.CharFi …
0
votes
2answers
39 views
Django: provide choices list to a checkbox from a view function
Hi, in my Django application I've got a form with a ChoiceField that normally allows to choice between a range of integer values.
class FormNumber(forms.Form):
list=[]
for i in ra …
0
votes
2answers
43 views
Trying to display a list with no primary key. (i dont even know if this is the right title)
I have a model with no primary key. it has the id's from other models. I want to call iid_ id.
For example iid_id = 1.
There are 21 rows with the number 1. I want to grab all t …
0
votes
2answers
65 views
handling multiple returned objects
I have a contact/address app that allows users to search the database for contact entries. The current view will return an object (Entry()) and display its fields. The code is as f …
0
votes
3answers
42 views
Django: How to block the entry includes only spaces or breaklines
I don't want someone visit my site to comment that only spaces, breaklines on the form. How do I use the command "if" in this case? Thanks for answers !
0
votes
2answers
70 views
Overriding Django views with decorators
I have a situation that requires redirecting users who are already logged in away from the login page to another page. I have seen mention that this can be accomplished with decor …
1
vote
2answers
49 views
Adapt an existing database to a django app
I have a Postgresql databese with data. I want to create a django app with that database.
How can i import the tables to django models and/or views?
1
vote
3answers
117 views
Specific use case for Django admin
I have a couple special use cases for Django admin, and I'm curious about other peoples' opinions:
I'd like to use a customized version the admin to allow users to edit certain o …
1
vote
2answers
37 views
How to get all related/parent instances from set of child instances without looping through latter set
Hi!
Please regard the following Django models:
ParentModel(models.Model):
...
ChildModel(models.Model):
parent = models.ForeignKey(ParentModel, related_name='children') …
0
votes
2answers
62 views
Rendering different part of templates according to the request values in Django
In my view to render my template I receive different parameters through my request.
According to these parameters I need to render different "part" in my templates.
For example l …
0
votes
2answers
79 views
Django: ajax response for valid/available username/email during registration
Hello - I am using jQuery to do some inline form validation during user registration to prevent form errors after posting by checking to see if:
username is available
email has n …
0
votes
3answers
101 views
What is the best way to post a date/time into a django view?
I'd like to build a view that allows the user to get a list of things that are happening around a certain time.
What is the best way to build this request? E.g. If I wanted to ge …
0
votes
4answers
78 views
django. Can a view receive a list as parameter?
Hi,
I want to submit a form (by POST) that will submit N (unknown) user_id's.
Can I make a view receive those ids as a list?
For example
def getids(request,list):
for id in …
2
votes
1answer
122 views
Django models are not ajax serializable
I have a simple view that I'm using to experiment with AJAX.
def get_shifts_for_day(request,year,month,day):
data= dict()
data['d'] =year
data['e'] = month
data[' …
