forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add canvas integration support (#300)
(cherry picked from commit 98522f7) (cherry picked from commit 71b7ca0) (cherry picked from commit fa70b41a1ce4177cb6d0d0c1e881fbe98cb82d48) (cherry picked from commit d2e53c92630467444a5036bf2756ec0d0acbea66) (cherry picked from commit 0f3333f5a3376abb989a74ce7dfe3676db28a83e)
- Loading branch information
1 parent
3160ff6
commit 54ff1d8
Showing
8 changed files
with
87 additions
and
4 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
16 changes: 16 additions & 0 deletions
16
lms/templates/instructor/instructor_dashboard_2/html-datatable.underscore
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,16 @@ | ||
<p> | ||
<h2><%- title %></h2> | ||
<table class="stat_table"><tr> | ||
<%_.forEach(header, function (h) {%> | ||
<th><%- h %></th> | ||
<%})%> | ||
</tr> | ||
<%_.forEach(data, function (row) {%> | ||
<tr> | ||
<%_.forEach(row, function (value) {%> | ||
<td><%- value %></td> | ||
<%})%> | ||
</tr> | ||
<%})%> | ||
</table> | ||
</p> |
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