浏览代码

Remove AboutLocationRelationship model
- Overlaps with functionality of Locations view
- Resolves #54

Scot Hacker 8 年之前
父节点
当前提交
3e1263d960
共有 2 个文件被更改,包括 26 次插入22 次删除
  1. 26 0
      bakerydemo/base/migrations/0013_auto_20170228_0714.py
  2. 0 22
      bakerydemo/base/models.py

+ 26 - 0
bakerydemo/base/migrations/0013_auto_20170228_0714.py

@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10.5 on 2017-02-28 07:14
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('base', '0012_auto_20170222_0756'),
+    ]
+
+    operations = [
+        migrations.RemoveField(
+            model_name='aboutlocationrelationship',
+            name='locations',
+        ),
+        migrations.RemoveField(
+            model_name='aboutlocationrelationship',
+            name='page',
+        ),
+        migrations.DeleteModel(
+            name='AboutLocationRelationship',
+        ),
+    ]

+ 0 - 22
bakerydemo/base/models.py

@@ -109,23 +109,6 @@ class FooterText(models.Model):
         verbose_name_plural = 'Footer Text'
 
 
-class AboutLocationRelationship(Orderable, models.Model):
-    """
-    This defines the relationship between the `LocationPage` within the `locations`
-    app and the About page below allowing us to add locations to the about
-    section.
-    """
-    page = ParentalKey(
-        'AboutPage', related_name='location_about_relationship'
-    )
-    locations = models.ForeignKey(
-        'locations.LocationPage', related_name='about_location_relationship'
-    )
-    panels = [
-        PageChooserPanel('locations')
-    ]
-
-
 class AboutPage(Page):
     """
     The About Page
@@ -150,11 +133,6 @@ class AboutPage(Page):
     content_panels = Page.content_panels + [
         ImageChooserPanel('image'),
         StreamFieldPanel('body'),
-        InlinePanel(
-            'location_about_relationship',
-            label='Locations',
-            min_num=None
-        ),
     ]
 
     # parent_page_types = [