diff --git a/dev-docs/plugins/template-outlets-reference.md b/dev-docs/plugins/template-outlets-reference.md index 19aeccd69c..ba234308e5 100644 --- a/dev-docs/plugins/template-outlets-reference.md +++ b/dev-docs/plugins/template-outlets-reference.md @@ -5,22 +5,32 @@ This document contains a list of all built-in template outlets in Misago. ## `ADMIN_DASHBOARD_AFTER_ANALYTICS` -On the Admin Dashboard page, below the Analytics card. +On the admin dashboard page, below the Analytics card. ## `ADMIN_DASHBOARD_AFTER_CHECKS` -On the Admin Dashboard page, below the Checks card. +On the admin dashboard page, below the Checks card. ## `ADMIN_DASHBOARD_END` -On the Admin Dashboard page, below all other content. +On the admin dashboard page, below all other content. ## `ADMIN_DASHBOARD_START` -On the Admin Dashboard page, above all other content. +On the admin dashboard page, above all other content. + + +## `CATEGORIES_LIST_END` + +On the categories page, under the list. + + +## `CATEGORIES_LIST_START` + +On the categories page, above the list. ## `TEST` diff --git a/misago/plugins/enums.py b/misago/plugins/enums.py index 9219fdef0b..33ec4b291c 100644 --- a/misago/plugins/enums.py +++ b/misago/plugins/enums.py @@ -8,11 +8,11 @@ class PluginOutlet(Enum): """ TEST = "Used in some tests." - ADMIN_DASHBOARD_START = "On the Admin Dashboard page, above all other content." - ADMIN_DASHBOARD_AFTER_CHECKS = "On the Admin Dashboard page, below the Checks card." + ADMIN_DASHBOARD_START = "On the admin dashboard page, above all other content." + ADMIN_DASHBOARD_AFTER_CHECKS = "On the admin dashboard page, below the Checks card." ADMIN_DASHBOARD_AFTER_ANALYTICS = ( - "On the Admin Dashboard page, below the Analytics card." + "On the admin dashboard page, below the Analytics card." ) - ADMIN_DASHBOARD_END = "On the Admin Dashboard page, below all other content." + ADMIN_DASHBOARD_END = "On the admin dashboard page, below all other content." CATEGORIES_LIST_START = "On the categories page, above the list." CATEGORIES_LIST_END = "On the categories page, under the list."