Frontend | Backend | Api

Blogs default templates (Backend)

This page contains an overview of the default templates for the Blogs module.

The overview is generated based on controllers using the specified template as their default layout and containing GET methods; thus depending on the configuration the controller might not use the template at all or other controllers might use the template too.
The table is only meant as a first orientation which ResponseVariables can likely be expected when working with the template.

File Controller GET Response variables GET Description
blogs/backend/blogs/add.html Blogs\Add
Name Type Description
blog Blog Single (empty) Blog record
Add a new record. Assigns an empty record to the template.
blogs/backend/blogs/edit.html Blogs\Edit
Name Type Description
blog Blog Retrieved Blog record
Retrieve a single record and display the edit page for the record
blogs/backend/blogs/manage.html Blogs\Manage
Name Type Description
blogs Collection (Blog) Collection of Blogs
Retrieve available records and assign them to the template for editing.
blogs/backend/comments/add.html Comments\Add
Name Type Description
comment Comment Single (empty) Comment record
Add a new record. Assigns an empty record to the template.
blogs/backend/comments/edit.html Comments\Edit
Name Type Description
comment Comment Retrieved Comment record
Retrieve a single record and display the edit page for the record
blogs/backend/comments/manage.html Comments\Manage
Name Type Description
comments Collection (Comment) Collection of Comments
Retrieve available records and assign them to the template for editing.
blogs/backend/posts/add.html Posts\Add
Name Type Description
post Post Single (empty) Post record
Add a new record. Assigns an empty record to the template.
blogs/backend/posts/edit.html Posts\Edit
Name Type Description
post Post Retrieved Post record
Retrieve a single record and display the edit page for the record
blogs/backend/posts/manage.html Posts\Manage
Name Type Description
posts Collection (Post) Collection of Posts
Retrieve available records and assign them to the template for editing.