Skip to content
Snippets Groups Projects
Unverified Commit 91e730ce authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add first documentation for core models.

parent 775a5c5c
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,10 @@ class School(models.Model):
class Person(SchoolRelated):
""" A model describing any person related to a school, including, but not
limited to, students, teachers and guardians (parents).
"""
class Meta:
unique_together = [['school', 'short_name'], ['school', 'import_ref']]
......
......@@ -11,6 +11,7 @@ Welcome to BiscuIT's documentation!
:caption: Contents:
dev/00_index
ref/00_index
Indices and tables
......
API and models reference
========================
.. toctree::
:glob:
core/*
Core data models
================
.. automodule:: biscuit.core.models
:members:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment