Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

Many one-to-one relationships pointing to the same model Django

I'm designing an application in Django where I have an Item model with numerous attributes for each item. I'm experiencing very poor performance in my application and I'm wondering if there are flaws ...
Josh's user avatar
  • 1
0 votes
1 answer
80 views

Django many-to-many formset for books and authors: only books added to database

My aim is to have a form where users can enter a book and its authors into the database using an 'Add Author' button if there's more than one author. I use a many-to-many relationship so all of these ...
Dominic J's user avatar
0 votes
0 answers
97 views

Django - Retieve Data from Reservation Form and Display back to User

Trying to pull data from my Database and display it back to the user so they can edit/delete it for full CRUD functionality. At the moment when i iterate through the reservations it comes back empty. ...
Jack Crosbie's user avatar
0 votes
1 answer
40 views

Tracking item order for storage to and retrieval from a DB

I'm trying to figure out how I'm going to 'CRUD' the order of items I have in a group that I'm storing in a database. (Pseudo statement of: select * items from app where group_id = 1;) My guess is ...
richardnpaul's user avatar