Skip to content

Commit

Permalink
Regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalp committed Dec 20, 2023
1 parent 9f0c31e commit ca90357
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
18 changes: 14 additions & 4 deletions dev-docs/plugins/template-outlets-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
8 changes: 4 additions & 4 deletions misago/plugins/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."

0 comments on commit ca90357

Please sign in to comment.