The centerpiece of the Django object-relational mapping scheme is the Model.

learn more… | top users | synonyms

1
vote
2answers
28 views

Only validate admin form if condition is true

I have a question model and a choices model. A choice can be correct or not. class Choice(models.Model): question = models.ForeignKey('Question', related_name='choices') choice = ...
1
vote
1answer
23 views

django model ManyToManyField not going through Manager

I have 3 models. class Poll(model): title = models.CharField() options = models.ManyToManyField(Option, through='PollOption', null=True, blank=True) class Option(model): title = ...
0
votes
2answers
25 views

Mode Inheritance how to implement ModelForms (Inerithance?)

i'm recently moving my db to a model Inheritance structure. Here an example: Task model STATUS_CHOISE = (('PR', 'In process'), ('ST', 'Stopped'), ('FN', 'Finished'), ('DL', 'Deleted'),) class ...
0
votes
0answers
18 views

Django Many-to-Many relation insertion control

I have the following models: class Item(models.Model): # fields # ... class Collection(models.Model): items = models.ManyToManyField(Item, related_name="collections") # other fields ...
-1
votes
1answer
15 views

clear form field after a submit in django

this my view code if request.method == 'POST': if 'cancel' in request.POST: return redirect('incident.views.index') if 'password' in request.POST: registerform = ...
0
votes
1answer
20 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
24 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
1answer
21 views

Python/Django: Get record from DB based on a dictionary field

I have a database table and one of the fields is a serialized python dictionary (or stringified JSON) in this form: {"full_name":"first_name=John&last_name=Smith", "id":24354,"username":"hello"} ...
2
votes
0answers
16 views

Django's cascade delete is executing the DELETE SQL twice

I've got an odd situation here, any idea why the delete SQL for the myapp_entry_tag table is being performed twice? >>> from myapp.models import Tag >>> from django.db import ...
0
votes
2answers
17 views

Django check if object in ManyToMany field

I have quite a simple problem to solve. I have Partner model which has >= 0 Users associated with it: class Partner(models.Model): name = models.CharField(db_index=True, max_length=255) slug ...
0
votes
1answer
15 views

Split Models over Packages

Isn't it possible to have a package: models and then inside the model another package models.country and then syncdb it? I always get an error, even when I import it in __init__.py inside the ...
0
votes
0answers
15 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
14 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
0answers
24 views

How to create model in django from legacy database in which I have access to few scemas?

We have command to create tables from legacy database. python manage.py inspectdb > models.py I have access to very few scemas in database. I want to create models for the tables which I have ...
1
vote
1answer
28 views

list_filter triggering a FieldError

One of my queries suddenly started to fail after I made some changes to the AdminModel. After searching a bit, I found that adding a list_filter to my admin_model is creating the FieldError, which ...
0
votes
2answers
26 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
29 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 ...
0
votes
1answer
30 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
42 views
+250

Find related objects and display relation

I am using django-follow to allow users to "follow" objects - in this example, Actors in films. I am pulling back a list of film actors using actors_user_is_following = ...
-3
votes
0answers
24 views

Creating custom permissions [closed]

How will i hide the "Log" option for any users other than Admin? =========================== default_panel = 'Log' def get_default_panel(self, request): is_admin = ...
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
45 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
27 views

Subclassing AbstractUser in Django for two types of users

I'm developing a school database system in Django 1.5, and was planning on having a number of different user types (Student, Staff, Parent) which subclass AbstractUser (actually, another abstract ...
0
votes
1answer
25 views

Django 1.5 : OperationalError in windows when running “python manage.py syncdb” using postgresql-psycopg2

This is my settings.py file in my Django project. OS : Windows, hosting : localhost DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': ...
0
votes
1answer
13 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
0answers
14 views

Django admin GenericForeignKey inline

class MyUser(AbstractBaseUser): ... content_type = models.ForeignKey(ContentType, limit_choices_to={"model__in": ("agentprofile", "clientprofile")) object_id = ...
0
votes
1answer
28 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
25 views

How to validate white space in django ModelForm

forms.py class PhoneForm(forms.ModelForm): class Meta: model = Phone_info fields = ['name1','number1','name2','number2','name3','number3','emergency','emergency_number'] I need ...
0
votes
1answer
25 views

Django JOIN query without foreign key

Is there a way in Django to write a query using the ORM, not raw SQL that allows you to JOIN on another table without there being a foreign key? Looking through the documentation it appears in order ...
0
votes
1answer
58 views
+50

django obtain related manager with unknown name

Trying to make my app reusable and compatible with custom user models, I've encountered the following issue: Let's say the User model is the following: class Member(AbstractUser): pass # ...
1
vote
1answer
27 views

Django Model Optimization

Class Model(models.Model): ....... ....... ....... ....... first_name = models.CHarField(max_length = 50) last_name = models.CharField(ma_lenghth = 50) def full_name(): ...
0
votes
2answers
30 views

How to modify a model after bulk update in django?

I try some code like this: mymodels = MyModel.objects.filter(status=1) mymodels.update(status=4) print(mymodels) And the result is an empty list I know that I can use a for loop to replace the ...
0
votes
1answer
30 views

password field data gets clear after submitting

I am uisng Django's auth_user table for username and password.To change the password field i did the below in forms.py class UserRegisterForm(forms.ModelForm): password = ...
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
2answers
30 views

Django create composite attribute

If I have a Person modle as below: class Person first_name = models.CharField last_name = models.CharField I want to create a composite attribute full name, which would be a combination of ...
1
vote
2answers
26 views

Mapping a different field OneToOneField in a ModelForm

I have two django models related with a OneToOneField. I'll show the relevant fields: class User(AbstractBaseUser, PermissionsMixin): email = models.EmailField(unique=True, db_index=True) And ...
0
votes
0answers
30 views

Django: get the first object from groups

In Django I`m getting my advertisement objects with the following queryset: ads = ads.objects.filter(id=ad_id) My MySQL ADS table have n ads grouped by an external_id that identifies where it was ...
0
votes
1answer
12 views

Unique field in Django Model for each foreign key

I am defining a set of models, which have references to each other. They are a model for a documentation app, which is as follows class Document(models.Model): text = models.TextField() class ...
0
votes
0answers
18 views

django xml model specification?

I'm using django with many related projects. All those projects are using their own models. But unfortunately this is not DRY, because each model differ from each other very slightly, for example some ...
0
votes
1answer
16 views

Get referenced Model by field name on Django?

I have the following model on Django: class Statue(models.Model): id = models.IntegerField(primary_key=True) name = models.CharField(max_length=128L) ref_id = models.ForeignKey('Foo', ...
-2
votes
0answers
13 views

How to create Create CRUD in django?

How create models organization, groups and skills using django. Please help me thanks to all. Create Organizations People involved in different organizations Organization contains different groups ...
0
votes
1answer
25 views

Django syncdb doesn't work after invoking inspectdb

I created a model from an existing PostgreSql database using inspectdb, when I try to do a syncdb,in order to generate the authorization tables, it generates the following error: CommandError: One or ...
2
votes
1answer
42 views

Lose data with django-south schemamigration

I have a django model with around 500k entries in mysql database. I'd like to add another field to my model: site = models.ForeignKey(Site, verbose_name=_('Site'),null=True,blank=True). But I lose ...
0
votes
1answer
30 views

TypeError: Error when calling the metaclass bases sequence item 2: expected string or Unicode, int found

I have the following models.py from django.db import models import datetime class Build(models.Model): build_name = models.CharField(max_length=60) description = ...
0
votes
2answers
23 views

How to get the array consisting of arrays containing the fields from the table row in Django QuerySet API?

How to get the array consisting of arrays containing the fields from the table row in Django QuerySet API? Db table example: id | col1 | col2 | col3 1 | 12 | 123 | 11 2 | 2 | 23 | 2 ...
0
votes
0answers
30 views

Appropriate max_length for atom id field?

I am using atom feeds within a Django application, and was planning on using a CharField to represent the id field of an entry. Given that max_length is required, what would be an appropriate length?
1
vote
1answer
29 views

Django one-to-one reverse relationship DoesNotExist

I've got an odd problem here, where my one-to-one relationship doesn't seem to be working in reverse. It's easiest to explain with code. I have extended the default Django User to add a timezone, as ...
1
vote
1answer
31 views

Representing ManyToMany relation in Django as two multichoices

I have some many2many fields with a lot of options to choose from and I'd like to have two multichoices for each one, on the left the available options and on the right side the chosen ones. Here is ...
0
votes
1answer
24 views

Raise field error in models clean method

How to raise a ValidationException in the models clean method? def clean(self): from django.core.exceptions import ValidationError raise ValidationError({'title': 'not ok'}) The above does ...

1 2 3 4 5 130