You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.4 KiB

4 years ago
4 years ago
  1. from django.db import models
  2. class Volunteer(models.Model):
  3. realname = models.CharField(max_length=200, null=True)
  4. email = models.CharField(max_length=200, null=True)
  5. username = models.CharField(max_length=200, null=True)
  6. class Meta:
  7. abstract = True
  8. class Project(Volunteer):
  9. name = models.CharField(max_length=200)
  10. start = models.DateTimeField('start date')
  11. # contact = models.ForeignKey(Volonteer, on_delete = models.CASCADE, null = True)
  12. pid = models.IntegerField(null=True) # automaticly generated
  13. def __str__(self):
  14. return self.name
  15. class HonoraryCertificate(Volunteer):
  16. request_url = models.CharField(max_length=400) #can urls be longer in theory?
  17. number = models.IntegerField(null = True)
  18. def __str__(self):
  19. return "Certificate for " + self.realname
  20. #abstract class for Library, IFG, ...
  21. class Grant(Volunteer):
  22. cost = models.CharField(max_length=10)
  23. notes = models.CharField(max_length=500)
  24. class Meta:
  25. abstract = True
  26. # should be identical for ELitStip and Software?
  27. class Library(Grant):
  28. library = models.CharField(max_length=200)
  29. duration = models.CharField(max_length=100)
  30. def __str__(self):
  31. return self.library
  32. class IFG(Grant):
  33. url = models.CharField(max_length=400) #can urls be longer in theory?
  34. def __str__(self):
  35. return "IFG-Anfrage von " + self.realname