-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UI] adds Hedy dashboard & common error detection (#4166)
**Description** * Adds a button to the `for-teachers/class/{{class_info.id}}` page to open the live statistics dashboard. * Adds a live statistics dashboards page at `/live_stats/class/{{class_info.id}}`.
- Loading branch information
1 parent
138d7ce
commit 7e25197
Showing
67 changed files
with
4,870 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{% extends "auth.html" %} | ||
|
||
{% block regular_content %} | ||
{# This template holds the outer parts of the page, while the partial is the one we will be rendering trtough HTMX calls #} | ||
{{ | ||
render_partial('partial-class-live-stats.html', | ||
class_info=class_info, | ||
class_overview=class_overview, | ||
dashboard_options=dashboard_options, | ||
attempted_adventures=attempted_adventures, | ||
dashboard_options_args=dashboard_options_args, | ||
adventures=adventures, | ||
max_level=max_level, | ||
current_page=current_page, | ||
page_title=page_title | ||
) | ||
}} | ||
|
||
{% endblock %} |
Oops, something went wrong.