forked from onlyphantom/pedagogy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request onlyphantom#38 from onlyphantom/veteran
enhanced team analytics page and improved cache
- Loading branch information
Showing
8 changed files
with
120 additions
and
56 deletions.
There are no files selected for viewing
Binary file not shown.
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
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,28 @@ | ||
{% if instructorstats['min_diff']|length == 1 %} | ||
{% for inst in instructorstats['min_diff'] %} | ||
{{ inst }} | ||
{% endfor %} | ||
{% else %} | ||
{% set comma = joiner(", ") %} | ||
{% for inst in instructorstats['min_diff'] %} | ||
{{ comma() }}{{ inst }} | ||
{% endfor %} | ||
{% endif %} | ||
had limited leading roles in the last 3 months. | ||
Consider increasing the number of opportunities for the individual(s) or call for a performance evaluation. | ||
|
||
<hr> | ||
{% if instructorstats['max_6mths']|length == 1 %} | ||
{% for inst in instructorstats['max_6mths'] %} | ||
{{ inst }} | ||
{% endfor %} | ||
{% else %} | ||
{% set comma = joiner(", ") %} | ||
{% for inst in instructorstats['max_6mths'] %} | ||
{{ comma() }}{{ inst }} | ||
{% endfor %} | ||
{% endif %} | ||
led the team with {{ instructorstats['max_wh'] }} lead instructor assignments. | ||
Consider greater responsibilities for the individual(s). Diversification greatly enhances | ||
personal growth by adding a level of robustness to the person's skill exposure. | ||
|
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 |
---|---|---|
@@ -1,24 +1,23 @@ | ||
|
||
<div class="card response-card"> | ||
<p class="card-text">{{ review['comments'] }}</p> | ||
<ul> | ||
{% if review['difficulty'] >= 4%} | ||
<li><i class="material-icons">check</i>Lecture wasn't too difficult</li> | ||
{% endif %} | ||
{% if review['difficulty'] >= 4%} | ||
<li><i class="material-icons">check</i>Training was knowledgeable</li> | ||
{% endif %} | ||
{% if review['objectives'] >= 4 %} | ||
<li><i class="material-icons">check</i>Training objectives were met</li> | ||
{% endif %} | ||
{% if review['timeliness'] >= 4 %} | ||
<li><i class="material-icons">check</i>Time allocated was sufficient</li> | ||
{% endif %} | ||
{% if review['satisfaction_score'] >= 4 %} | ||
<li><i class="material-icons">check</i>Great Overall Experience </li> | ||
{% endif %} | ||
</ul> | ||
<footer class="blockquote-footer"> | ||
<small>Student from {{ review['workshop'] }}</small> | ||
</footer> | ||
</div> | ||
<div class="card response-card"> | ||
<p class="card-text">{{ review['comments'] }}</p> | ||
<ul> | ||
{% if review['difficulty'] >= 4%} | ||
<li><i class="material-icons">check</i>Lecture wasn't too difficult</li> | ||
{% endif %} | ||
{% if review['difficulty'] >= 4%} | ||
<li><i class="material-icons">check</i>Training was knowledgeable</li> | ||
{% endif %} | ||
{% if review['objectives'] >= 4 %} | ||
<li><i class="material-icons">check</i>Training objectives were met</li> | ||
{% endif %} | ||
{% if review['timeliness'] >= 4 %} | ||
<li><i class="material-icons">check</i>Time allocated was sufficient</li> | ||
{% endif %} | ||
{% if review['satisfaction_score'] >= 4 %} | ||
<li><i class="material-icons">check</i>Great Overall Experience </li> | ||
{% endif %} | ||
</ul> | ||
<footer class="blockquote-footer"> | ||
<small>Student from {{ review['workshop'] }}</small> | ||
</footer> | ||
</div> |