summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/locations/admin.py4
-rw-r--r--app/locations/models.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/app/locations/admin.py b/app/locations/admin.py
index f970130..5e4c905 100644
--- a/app/locations/admin.py
+++ b/app/locations/admin.py
@@ -256,11 +256,11 @@ class CampsiteAdmin(OLAdminBase):
'fields': (
'name',
('date_arrived', 'date_left'),
- 'point',
'campsite_type',
+ 'body_markdown'
+ 'point',
'campsite_number',
'campsite_we_wish_we_had',
- 'body_markdown'
),
'classes': (
'show',
diff --git a/app/locations/models.py b/app/locations/models.py
index 5efab23..ebac2e7 100644
--- a/app/locations/models.py
+++ b/app/locations/models.py
@@ -223,6 +223,7 @@ class Campsite(models.Model):
)
campsite_type = models.IntegerField(choices=CAMPSITE_TYPE, default=0)
campsite_number = models.IntegerField(blank=True, null=True)
+ campsite_price = models.IntegerField(blank=True, null=True)
campsite_we_wish_we_had = models.IntegerField(blank=True, null=True)
body_markdown = models.TextField(blank=True, null=True)
body_html = models.TextField(blank=True, null=True)