Adding score and place to team page, fixing create_app

This commit is contained in:
Kevin Chung
2015-03-08 13:39:22 -04:00
parent f43c695330
commit b4dd54d36a
7 changed files with 46 additions and 4 deletions

View File

@@ -5,6 +5,17 @@
<div class="row">
<h1 id="team-id">{{ team.name }}</h1>
<h2 id="team-place" class="text-center">
{%if place %}
{{ place }} <small>place</small>
{% endif %}
</h2>
<h2 id="team-score" class="text-center">
{%if score %}
{{ score }} <small>points</small>
{% endif %}
</h2>
<div id="keys-pie-graph"></div>
<div id="categories-pie-graph"></div>

View File

@@ -5,6 +5,18 @@
<div class="row">
<h1 id="team-id">{{ team.name }}</h1>
<h2 id="team-place" class="text-center">
{%if place %}
{{ place }} <small>place</small>
{% endif %}
</h2>
<h2 id="team-score" class="text-center">
{%if score %}
{{ score }} <small>points</small>
{% endif %}
</h2>
<br>
<div id="keys-pie-graph"></div>
<div id="categories-pie-graph"></div>