0
votes
0answers
17 views

Django filter argument based on foreign key value

I am trying to filter a queryset based on a DateField filter using an argument from a foreign key. So if the Server.updated difference in days from today is greater than Support.update_days, then it ...
1
vote
2answers
38 views

Django Foreign Key relate to more than one class

I have two classes, one called phase1 and one called phase2. phase2 has an instance of phase1 in it (as a Foreign Key relationship). Now I want to make another class, called POObject, that has a ...
0
votes
0answers
48 views

Django forms. Create instance of foreign key on the fly.

I have two classes, one of which has the other as a ForeignKey. The first class is DeliveryLocation, and the second class is Purchase. DeliveryLocation has two variables, city and zip. I want to make ...
0
votes
2answers
61 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
1answer
31 views

Mysql Creating a Foreign key

I need to create a foreign key for my Reviewers_POS table. I have the Reviewers_Id as my Primary key, and i want to pass it to my id_r1 from Reviewrs_POS table.. import MySQLdb as mdb import ...
0
votes
1answer
27 views

can't get the objects of foreign keys of django models also my design is probably bad

I've made two django models: Person and Items (here is part of my code): class Person(models.Model): """ Represent a person who has credentials. The person may have devices and/or ...
0
votes
1answer
46 views

Create new or select object in a ForeignKey in Django 1.5

I have two models, model A and model B. In model B I have two ForeignKey fields which refers to the model A. It works, but it requires the model A to have records before I can choose values in model ...
0
votes
2answers
54 views

django-salesforce foreign key syntax

I'm using django-salesforce to get a list of Contacts (child) and the Accounts (parent) associated with them. In my models.py, what is the syntax for defining a field in the Contact class to hold the ...
0
votes
1answer
41 views

How to add the green plus button on a models.ForeignKey field?

I've got a field such as this one in my models.py: class Animal(models.Model): master = models.ForeignKey('masters.Master', blank=True, null=True, db_index=True, related_name='master_of') But ...
0
votes
2answers
35 views

How to use a ForeignKey field as filter in Django?

I have 2 models: class Category(models.Model): title = models.CharField(max_length=250) ### other fields class Album(models.Model): category = models.ForeignKey(Category) subject = ...
1
vote
1answer
42 views

Show Data of related object in Template - Django

In a template, I want to show the data of all objects related to the "source-object". This is the model of the Events that I want to show on the Article detail page: ### Models ### class ...
2
votes
2answers
76 views

DJANGO: How to list_display a reverse foreign key attribute?

I'm building a web app that tracks what library books a person checks out. I have the following models: class Person(models.Model): name = models.CharField(max_length=100) def ...
1
vote
1answer
104 views

SQLAlchemy ON DELETE SET NULL while using secondary table

I encountered a basic use case - I have two tables, Nodes and Networks, and they are interconnected using third table IPAddr as a secondary association table: class Node(Base, BasicValidator): ...
0
votes
1answer
49 views

Django Restframework - How to handle foreignkey relations in a put request [closed]

I'm developing an app for some tests and their results and want to provide a restful service. First, here are my models: class Test(models.Model): name = models.CharField(max_length=200) ...
0
votes
2answers
70 views

Django: get related set from a related set of a model

class Book(models.Model): # fields class Chapter(models.Model): book = models.ForeignKey(Book) class Page(models.Model): chapter = models.ForeignKey(Chapter) i want all the pages of ...
-7
votes
2answers
128 views

Football Database [closed]

I'm here because I have a problem. I am making a website about football (soccer) with all players, championships, teams, etc. and I can't fix that : I created first table, players. Next, another for ...
1
vote
0answers
80 views

How to set a default value for a ForeignKey in django that can be changed?

I'm trying to make a project management tool (open source) in django, and while developing, I tried to reproduce this behaviour from Trac that allows the administrator to select a default issue type ...
0
votes
2answers
146 views

Django and Foreign Key Saving Connection

I'm creating a website about baseball player for learning purpose. I'm stock in how to handle the foreign keys. Here is my model: class Player_Bios(models.Model): mlb_id = ...
0
votes
1answer
49 views

Filter a django model by comparing two foreign keys

I need to create a filter in Django by comparing two foreign keys to each other. The double-underscore syntax only works on the left hand side of the equation. So whatever is on the right side throws ...
1
vote
1answer
84 views

Django: Query to get User.usernames via foreign key

Consider the following Friendship model, where for every friendship made, there is a User who sent the friend request, and a User who received the friend request: from django.contrib.auth.models ...
0
votes
1answer
83 views

Django models, how to specify foreign key on multiple columns?

So I want something similar to this: CREATE TABLE orders( ord_no integer PRIMARY KEY, ord_date date, item_code integer , item_name character(35), item_grade character(1), ord_qty numeric, ord_amount ...
1
vote
2answers
1k views

SQLite foreign key examples

I am not an expert in sql / sqlite.. suppose we have two tables: CREATE TABLE child ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, ); CREATE TABLE MyTableB( dog TEXT, FOREIGN ...
0
votes
0answers
47 views

have to initialize a form field (foreign key from Model A) with another submitted form field (same foreign key constraint from Model A))

models.py class Hall(models.Model): id = models.IntegerField(primary_key=True) name = models.CharField(max_length=576) class Meta: db_table = u'school_hall' class ...
0
votes
1answer
74 views

Django models - foreign key object date rewriting

I have such situation: Models: class Test2(models.Model) { date = models.DateField(editable=False) } class Test(models.Model) { test2 = models.ForeignKey(Test2) } Action: for test_obj in ...
3
votes
1answer
189 views

Django postgresql foreign key

I have this models.py from django.db import models from django.contrib.auth.models import User class Service(models.Model): user = models.ForeignKey(User) name = ...
2
votes
1answer
124 views

In Django ForeignKey relationship does not get saved correctly when saving two objects

I have two models that represent a one-to-many relationship. The InterestRateCurve object can have many InterestRate objects. The issue is that when I have a function that creates two curves where ...
9
votes
1answer
74 views

Django: More pythonic __unicode__

All my django-models have unicode functions, at the moment these tend to be written like this: def __unicode__(self): return u'Unit: %s -- %s * %f' % (self.name, self.base.name, self.mul) ...
0
votes
2answers
320 views

Django CreateView : Append ForeignKey to CustomForm Data

I have a CreateView as follows: class ResumeCreateView(CreateView): model = Resume def form_valid(self, request, form): candidate = Candidate.objects.get(user=self.request.user) ...
0
votes
1answer
94 views

change the foreign key field from select box to raw_id_fields in my custom form

i m not working with the admin.py is there any way i could have the foreign key field instead of a drop down select box , a dynamic search box(suggestive for the user) like we have raw_id_fields in ...
2
votes
1answer
109 views

Making initialized foreign key field as read-only in the form

I have a foreign key field in my form, initialized with: form=myform(intial= {'val':abc.objects.get(pk=id)}) I have tried the following set of codes individually to make the field "val" as a read ...
0
votes
2answers
211 views

Migration issues when adding ForeignKey to model

I currently have a site which hosts apps and has a database of users. Now I want to connect the two so Apps can have authors (i.e. the users) Update: A few more pertinent details added below and I'm ...
0
votes
1answer
102 views

UnitTest : Can't add many to many relations : Integrity error (seems delete do not do his job)

I have two tables : Person & Team ; each has a Many-To-Many relation with the other. I do this in the setUp function (called before each function of testing, 3 times in my case) p = ...
2
votes
2answers
76 views

Django finding which field matched in a multiple OR query

I've got a couple models which are set up something like this: class Bar(models.Model): baz = models.CharField() class Foo(models.Model): bar1 = models.ForeignKey(Bar) bar2 = ...
1
vote
2answers
61 views

How can I guarantee that a boolean is true for only one row with a particular ForeignKey in Django?

Imagine something like this: class User(models.Model): name = CharField(max_length=80) class TelephoneNumber(models.Model): phone_number = CharField(max_length=10) user = ...
1
vote
2answers
362 views

Django - get object stored in Foreign Key [duplicate]

Possible Duplicate: Django FileField with upload_to determined at runtime I am creating a web application that allows user to store files online, like Dropbox. A user's file is modeled by ...
0
votes
1answer
75 views

How to access data in filter parameter through a foreign key in Django?

I have two models: User (pre-defined by Django) and UserProfile that are connected through a foreign key. class UserProfile(models.Model): user = models.OneToOneField(User, related_name="connect") ...
0
votes
1answer
82 views

Python using sqlite3 to create two tables with foreign keys?

I'm coding a small function to help with learning how to use python and sqlite3 together. In this function I want to create a table for vocabulary words and a separate but, linked table for the ...
2
votes
1answer
71 views

Make model reference abstract model in one-to-many

I'm pretty new to Django and right now I'm trying to understand the use of abstract models. Let's say you're writing a blogging service and you want both authenticated and anonymous users to be able ...
0
votes
2answers
237 views

django: 'has no ForeignKey' Error while running the 'django by example' tutorial code

I am following this part of the 'django by example' tutorial. Now when I go to /admin/todo/datetime/ and click on Add date time I get this error: Exception Type: Exception at ...
1
vote
0answers
217 views

Django: Custom widget for ForeignKey in geolocation app

I am working on an application that manage the locations for a web site. This application (locations) contains the model(simplified): class Location(models.Model): """ Model for storing ...
0
votes
1answer
113 views

Foreign key constrains for Python data structures without using real databases

I'm looking for a way to manage a set of Python data structures which would nicely fit into a relational schema, but without the overhead of having a real database or parsing SQL. The amount of data ...
1
vote
2answers
227 views

Django error with ForeignKey reference

I have a question about a ForeignKey reference problem with django. This is a part of my code : App ticketsTrader class TicketsTrader(models.Model): seller = models.ForeignKey(User, ...
0
votes
1answer
95 views

SQLAlchemy: can't understand this one2many relationship with composite keys

I have an SQLAlchemy model like the one below, and at first it didn't work (problems with the join, and then expecting a scalar instead of a list). I "fixed" it in the included version, but I really ...
1
vote
1answer
234 views

objects.filter() and Foreign Key NULL

I've written a complex search form in Django. Here is my example model: class student(models.Model): name = models.CharField(max_length=255) school = models.ForeignKey('school', null=True, ...
2
votes
1answer
857 views

How to update python-sqlite on mac osx

Python 2.7.3 on Mac OS X Snow Leopard (downloaded from python.org), tells me it is using sqlite 3.6.12 (sqlite3.sqlite_version). However, to use foreign keys, I need at least sqlite 3.6.19. How can I ...
0
votes
2answers
135 views

Cannot assign “[u'192.168.99.1', u'192.168.99.1']”: “MultiWAN.nameserver” must be a “NameServer” instance

Consider the following django model class MultiWAN(models.Model): isp_name = models.CharField(max_length=10) description = models.TextField(null=True) ip_address = ...
2
votes
1answer
682 views

Using SQLAlchemy with multiple self-referential foreign keys

What if I had something like a double linked list in a relational database, for example: node_id left_id right_id 1 null 2 2 1 3 3 2 null ...
3
votes
1answer
1k views

Django Foreign Key: get related model?

Is it possible to get the related model of a foreign key through the foreign key field itself? For example, if I have 3 models: class ModelA(models.Model) field1 = ...
1
vote
1answer
294 views

OperationalError: foreign key mismatch

I have two tables that I'm filling, 'msrun' and 'feature'. 'feature' has a foreign key pointing to the 'msrun_name' column of the 'msrun' table. Inserting in the tables works fine. But when I try to ...
1
vote
2answers
256 views

How can I enforce SQLite foreign keys in python using pysqlite2?

I have a SQLite database. According to this answer you need version 3.6.19+, which I have. I made it using version 3.7.10 of SQLite: >>> from pysqlite2 import dbapi2 as sqlite >>> ...

1 2 3