aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py (unfollow)
Commit message (Collapse)AuthorLines
2020-10-04Remove wiki templates and static.Gravatar Leon Sandøy-2968/+0
2020-10-04Remove wiki and pygments from Pipfile.Gravatar Leon Sandøy-298/+153
We no longer need these now that we're removing the wiki.
2020-09-26Add "Welcome to Python Discord" video to indexGravatar Den4200-3/+1
2020-09-20Remove delete permission for bot settings admin.Gravatar scragly-0/+5
I'm unable to see any cases where this would be wanted, and instead accidental deletion would result in the system possibly breaking, as we are unable to add the setting again to replace it if it got removed. The name has also set to read only in item view, to prevent renames, effectively doing the same thing as deleting it.
2020-09-20Add migrations for nomination and doc link model changes.Gravatar scragly-0/+93
2020-09-20Change documentation link model to order by package.Gravatar scragly-0/+5
2020-09-20Change Infraction admin to use fieldsets for better grouping of info.Gravatar scragly-9/+5
2020-09-20Allow Nomination end_reason to have a blank value for validation.Gravatar scragly-1/+2
Without `blank=True`, admin page editable forms could not be saved if no content was in the end_reason input.
2020-09-20Change UserTopRoleFilter to UserRoleFilter.Gravatar scragly-2/+2
Filter checks for general role membership instead of only those who have the selected role as top role. Noticed during development that we'd not be able to filter to show all Helpers otherwise, as some Helpers have different top roles such as Core Dev that wouldn't give immediately obvious behaviour to user expectations.
2020-09-20Test username property formatting for user model.Gravatar scragly-1/+5
2020-09-19Update user model in DeletedMessagesLogURLTests.Gravatar scragly-1/+0
`avatar_hash` is no longer a field stored in the database.
2020-09-19Remove noqa from DeletedMessagesLogURLTests setup.Gravatar scragly-1/+1
2020-09-18Don't allow expiry to be editable, due to pending bot tasks unsyncingGravatar scragly-0/+1
2020-09-18Declutter Infraction admin list, add actor list filter.Gravatar scragly-5/+25
2020-09-18Add DocumentationLink and BotSetting Admin models.Gravatar scragly-4/+28
2020-09-18Update DeletedMessage and LogEntry Admin models, add verbose names for MessageGravatar scragly-78/+95
2020-09-18Update Nomination Admin model, add actor filter.Gravatar scragly-10/+37
2020-09-18Add Used filter for OffTopicChannelName Admin model.Gravatar scragly-0/+1
2020-09-18Add OffensiveMessage Admin model.Gravatar scragly-4/+30
2020-09-18Update Role ModelAdmin to past changes, cleanup formatting.Gravatar scragly-17/+31
2020-09-18Fix format-style not supporting X hex casting like f-strings.Gravatar scragly-2/+2
2020-09-18Add return types and docstrings for new user admin changes.Gravatar scragly-14/+26
2020-09-18Add verbose names for user fields that need capitalisation fixes.Gravatar scragly-2/+4
2020-09-18Update UserAdmin to use new role values, pretty colours.Gravatar scragly-32/+50
2020-09-18Use admin.register decorators.Gravatar scragly-8/+8
2020-09-18Remove TagAdmin model as Tags were removed from site.Gravatar scragly-23/+0
2020-09-12Fix a broken test for nomination reason.Gravatar Eivind Teig-5/+2
We no longer return 400 if a reason is missing.
2020-09-11Allow blank/null input to the nomination reason.Gravatar Eivind Teig-1/+21
We are lowering the threshold for nomination. By allowing the users to make a nomination without a reason might make this feature more attractive amongst members of staff.
2020-09-03Update landing page.Gravatar Leon Sandøy-2/+2
Replace flake8-annotations with metricity.