A Django Online Library Management Project

I started learning
๐Ÿ“–
Django few months back, and this is a practice project from MDN Web Docs that touches the aspects of Django relatively broadly.

This project is about an effort to take a small library online, hence the name locallibrary.

Designing the LocalLibrary Models

Before we jump in and start coding the models, itโ€™s worth taking a few minutes to think about what data we need to store and the relationships between the different objects.

We know that we need to store information about books (title, summary, author, written language, category, ISBN) and that we might have multiple copies available (with globally unique id, availability status, etc.). We might need to store more information about the author than just their name, and there might

 

 

 

To finish reading, please visit source site