Add plugin documentation

This commit is contained in:
Raphael Michel
2016-12-08 18:20:43 +01:00
parent fa0bd5e89e
commit fb19891473
8 changed files with 152 additions and 0 deletions

View File

@@ -2,5 +2,8 @@ from django.db import models
class Checkin(models.Model):
"""
A checkin object is created when a person enters the event.
"""
position = models.ForeignKey('pretixbase.OrderPosition', related_name='pretixdroid_checkins')
datetime = models.DateTimeField(auto_now_add=True)