diff --git a/RIGS/forms.py b/RIGS/forms.py index fa1a682f..b339003e 100644 --- a/RIGS/forms.py +++ b/RIGS/forms.py @@ -89,4 +89,4 @@ class EventForm(forms.ModelForm): model = models.Event fields = ['is_rig', 'name', 'venue', 'start_date', 'start_time', 'end_date', 'end_time', 'meet_at', 'access_at', 'description', 'notes', 'mic', - 'person', 'organisation', 'dry_hire', 'checked_in_by', 'status'] \ No newline at end of file + 'person', 'organisation', 'dry_hire', 'checked_in_by', 'status', 'collector'] \ No newline at end of file diff --git a/RIGS/models.py b/RIGS/models.py index 48130089..21b1650d 100644 --- a/RIGS/models.py +++ b/RIGS/models.py @@ -246,7 +246,7 @@ class Event(models.Model, RevisionMixin): payment_method = models.CharField(max_length=255, blank=True, null=True) payment_received = models.CharField(max_length=255, blank=True, null=True) purchase_order = models.CharField(max_length=255, blank=True, null=True) - collector = models.CharField(max_length=255, blank=True, null=True) + collector = models.CharField(max_length=255, blank=True, null=True, verbose_name='Collected By') # Calculated values """ diff --git a/RIGS/templates/RIGS/event_detail.html b/RIGS/templates/RIGS/event_detail.html index 910331cf..f7d971e2 100644 --- a/RIGS/templates/RIGS/event_detail.html +++ b/RIGS/templates/RIGS/event_detail.html @@ -113,6 +113,9 @@