Skip to content

Commit

Permalink
remove organisation-list view from snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
goapunk committed Oct 22, 2024
1 parent 157db41 commit 6273cd8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
18 changes: 18 additions & 0 deletions home/migrations/0002_alter_menuitem_link_view.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.20 on 2024-10-22 10:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('home', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='menuitem',
name='link_view',
field=models.CharField(blank=True, choices=[], max_length=100),
),
]
1 change: 0 additions & 1 deletion home/models/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class LinkFields(models.Model):
)

allowed_views = (
('organisation-list', 'List of Organisations'),
)

link_view = models.CharField(
Expand Down

0 comments on commit 6273cd8

Please sign in to comment.