WETAccel: Enterprise-Grade Django Template for Government of Canada’s Web Initiatives
Table of Contents
Templates
The templates
directory contains all HTML templates used for rendering pages and components in the application. They are organized by language (e.g., English “en” and French “fr”) and further categorized by their purpose or functionality.
Templates
- Error Pages
404.html
: Displayed when the requested page is not found.500.html
: Displayed when there’s an internal server error.
- Privacy Pages
index.html
: The privacy policy of the website.
- Dashboard Pages
form.html
: An example of a form in the dashboard.table.html
: An example of a table in the dashboard.home.html
: The main dashboard home page.profile.html
: Allows users to view and update their profile.
- Home Pages
index.html
: The main home page for the website.
- Authentication Pages
forgot-password.html
: For users to request a password reset.logout.html
: Displayed after the user logs out.reset-password.html
: Allows users to reset their passwords.login.html
: The main login page.- Email Templates
password-reset.html
: Sent to users for resetting their password.
- Registration Pages
password.html
: Registration page focused on setting a password.username.html
: Registration page focused on setting a username.terms.html
: Displays the terms and conditions during registration.
- Search Pages
index.html
: Main search functionality page.
- Components
- Common Components
container.html
: A common container component.
- Public Components
header.html
: Public header component.footer.html
: Public footer component.banner.html
: Public banner component.
- Dashboard Components
sidenav.html
: Side navigation for the dashboard.
- Registration Components
breadcrumb.html
: Breadcrumb navigation for the registration process.
- Common Components
- Layouts
public.html
: Layout for public-facing pages.