-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Order MemberGroup by name by default (#3452)
* Order MemberGroup by name by default. This wasn't ideal for the old i18n-capable version of concrexit, but we dropped that so the comment is outdated. This does likely mean some redundant sorting is done, but that's not an issue. * add migration
- Loading branch information
1 parent
107a28a
commit ca77f66
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
website/activemembers/migrations/0045_alter_membergroup_options.py
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,20 @@ | ||
# Generated by Django 4.2.7 on 2023-11-08 18:09 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("activemembers", "0044_alter_membergroup_photo"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="membergroup", | ||
options={ | ||
"ordering": ["name"], | ||
"verbose_name": "member group", | ||
"verbose_name_plural": "member groups", | ||
}, | ||
), | ||
] |
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