This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alter help text for secondary category
- Loading branch information
Greg Turner
committed
Mar 17, 2017
1 parent
f6d6d58
commit 8083d03
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('icekit_events', '0019_auto_20170310_1220'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='eventbase', | ||
name='secondary_types', | ||
field=models.ManyToManyField(verbose_name=b'Secondary categories', help_text=b"Additional or internal types: Education or members events, for example. Events show in listings for <em>every</em> type they're associated with.", to='icekit_events.EventType', blank=True, related_name='secondary_events'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters