summaryrefslogtreecommitdiff
path: root/app/locations/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/locations/models.py')
-rw-r--r--app/locations/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/locations/models.py b/app/locations/models.py
index dfd8f27..e27e6cc 100644
--- a/app/locations/models.py
+++ b/app/locations/models.py
@@ -287,7 +287,7 @@ class Campsite(models.Model):
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)
- image = models.ForeignKey("photos.LuxImage", on_delete=models.CASCADE, null=True, blank=True)
+ image = models.ForeignKey("media.LuxImage", on_delete=models.CASCADE, null=True, blank=True)
class Meta:
ordering = ('-date_arrived',)