This commit is contained in:
reverend 2020-09-27 23:58:25 +02:00
parent 302e8bb994
commit 389e3eac43
1 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ The models contain an custom user profile, some abstract base models and the mod
### Explorer user profile ### Explorer user profile
Location: `lostplaces.models.models.Explorer` Location: `lostplaces.models.models.Explorer`
Import from: `lostplaces.models.models.Explorer` Import from: `lostplaces.models.Explorer`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
@ -29,7 +29,7 @@ Currently the explorer profile is used by the abstract model 'Submittable' and h
### Taggable ### Taggable
Location: `lostplaces.models.abstract_models.Taggable` Location: `lostplaces.models.abstract_models.Taggable`
Import from: `lostplaces.models.models.Taggable` Import from: `lostplaces.models.Taggable`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
@ -39,7 +39,7 @@ The abstract model Taggable represents an model that is taggable. It depends on
### Mapable ### Mapable
Location: `lostplaces.models.abstract_models.Mapable` Location: `lostplaces.models.abstract_models.Mapable`
Import from: `lostplaces.models.models.Mapable` Import from: `lostplaces.models.Mapable`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
@ -55,7 +55,7 @@ A mapable model has to provide its own get_absolute_url, in order to provide a l
### Submittable ### Submittable
Location: `lostplaces.models.abstract_models.Submittable` Location: `lostplaces.models.abstract_models.Submittable`
Import from: `lostplaces.models.models.Submittable` Import from: `lostplaces.models.Submittable`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
@ -67,7 +67,7 @@ When the object was submitted, automatically set by django (auto_now_add=True)
### Expireable ### Expireable
Location: `lostplaces.models.abstract_models.Expireable` Location: `lostplaces.models.abstract_models.Expireable`
Import from: `lostplaces.models.models.Expireable` Import from: `lostplaces.models.Expireable`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
@ -78,8 +78,8 @@ The date the object was created, automatically set by django (auto_now_add=True)
The date the object expires. The date the object expires.
### Voucher ### Voucher
Locatoin: `lostplaces.models.models.Voucher` Locatoin: `lostplaces.models.Voucher`
Import from: `lostplaces.models.models.Voucher` Import from: `lostplaces.models.Voucher`
#### Super Classes #### Super Classes
- django's `models.Model` - django's `models.Model`
- [lostplaces.models.Expireable](###expireable) - [lostplaces.models.Expireable](###expireable)