diff --git a/django_lostplaces/docs/developer.md b/django_lostplaces/docs/developer.md index b352346..2aadd94 100644 --- a/django_lostplaces/docs/developer.md +++ b/django_lostplaces/docs/developer.md @@ -10,7 +10,7 @@ The models contain an custom user profile, some abstract base models and the mod ### Explorer user profile Location: `lostplaces.models.models.Explorer` -Import from: `lostplaces.models.models.Explorer` +Import from: `lostplaces.models.Explorer` #### Super Classes - django's `models.Model` @@ -29,7 +29,7 @@ Currently the explorer profile is used by the abstract model 'Submittable' and h ### Taggable Location: `lostplaces.models.abstract_models.Taggable` -Import from: `lostplaces.models.models.Taggable` +Import from: `lostplaces.models.Taggable` #### Super Classes - django's `models.Model` @@ -39,7 +39,7 @@ The abstract model Taggable represents an model that is taggable. It depends on ### Mapable Location: `lostplaces.models.abstract_models.Mapable` -Import from: `lostplaces.models.models.Mapable` +Import from: `lostplaces.models.Mapable` #### Super Classes - 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 Location: `lostplaces.models.abstract_models.Submittable` -Import from: `lostplaces.models.models.Submittable` +Import from: `lostplaces.models.Submittable` #### Super Classes - django's `models.Model` @@ -67,7 +67,7 @@ When the object was submitted, automatically set by django (auto_now_add=True) ### Expireable Location: `lostplaces.models.abstract_models.Expireable` -Import from: `lostplaces.models.models.Expireable` +Import from: `lostplaces.models.Expireable` #### Super Classes - 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. ### Voucher -Locatoin: `lostplaces.models.models.Voucher` -Import from: `lostplaces.models.models.Voucher` +Locatoin: `lostplaces.models.Voucher` +Import from: `lostplaces.models.Voucher` #### Super Classes - django's `models.Model` - [lostplaces.models.Expireable](###expireable)