templates/pages/leaderboard.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Leaderboard{% endblock %}
  3. {% block bodyClass %}leaderboard{% endblock %}
  4. {% block body %}
  5.     <section id="leaderboard" class="leaderboard">
  6.         <div class="container-fluid">
  7.             <div class="row">
  8.                 <div class="col-md-12">
  9.                     <div class="vertical-tab" role="tabpanel">
  10.                         <!-- Nav tabs -->
  11.                         <ul id="leaderboardTab" class="nav nav-tabs" role="tablist">
  12.                             <li role="presentation" class="active"><a href="#rappersLeaderboardTab" aria-controls="leaderboard" role="tab" data-toggle="tab">Rappers Leaderboard</a></li>
  13.                             <li role="presentation"><a href="#crewsLeaderboardTab" aria-controls="leaderboard" role="tab" data-toggle="tab">Crews Leaderboard</a></li>
  14.                         </ul>
  15.                         <!-- Tab panes -->
  16.                         <div class="tab-content tabs">
  17.                             <div role="tabpanel" class="tab-pane fade in active" id="rappersLeaderboardTab">
  18.                                 <div class="row">
  19.                                     <div class="col-lg-11 m-auto">
  20.                                         <h3>Rappers Leaderboard</h3>
  21.                                         <div class="table-responsive">
  22.                                             <table class="table">
  23.                                                 <thead class="bg-custom">
  24.                                                 <tr>
  25.                                                     <th class="text-right text-bold" style="width: 10%" scope="col"><h6>Position</h6></th>
  26.                                                     <th class="text-bold" scope="col"><h6>Rapper</h6></th>
  27.                                                     <th class="text-right text-bold" scope="col"><h6>Rank points</h6></th>
  28.                                                 </tr>
  29.                                                 </thead>
  30.                                                 <tbody>
  31.                                                 {% if rappers|length > 0 %}
  32.                                                     {% for rapper in rappers %}
  33.                                                         <tr>
  34.                                                             <th class="text-right text-bold" scope="row"><h5>#{{ loop.index }}</h5></th>
  35.                                                             <td><a href="{{ path('rapperDetail', {id: rapper.id}) }}">{{ rapper.pseudoname }}</a></td>
  36.                                                             <td class="text-right" >{{ rapper.rank }}</td>
  37.                                                         </tr>
  38.                                                     {% endfor %}
  39.                                                 {% else %}
  40.                                                     <tr>
  41.                                                         <td></td>
  42.                                                         <td class="text-center w-100">No rappers :(</td>
  43.                                                         <td></td>
  44.                                                     </tr>
  45.                                                 {% endif %}
  46.                                                 </tbody>
  47.                                             </table>
  48.                                         </div>
  49.                                     </div>
  50.                                 </div>
  51.                             </div>
  52.                             <div role="tabpanel" class="tab-pane fade" id="crewsLeaderboardTab">
  53.                                 <div class="row">
  54.                                     <div class="col-lg-11 m-auto">
  55.                                         <h3>Crews Leaderboard</h3>
  56.                                         <div class="row">
  57.                                             <div class="table-responsive">
  58.                                                 <table class="table">
  59.                                                     <thead class="bg-custom">
  60.                                                     <tr>
  61.                                                         <th class="text-right text-bold" style="width: 10%" scope="col"><h6>Position</h6></th>
  62.                                                         <th class="text-bold" scope="col"><h6>Crew</h6></th>
  63.                                                         <th class="text-bold" scope="col"><h6>Crew members</h6></th>
  64.                                                         <th class="text-right text-bold" scope="col"><h6>Rank points</h6></th>
  65.                                                     </tr>
  66.                                                     </thead>
  67.                                                     <tbody>
  68.                                                     {% if crews|length > 0 %}
  69.                                                         {% for crew in crews %}
  70.                                                             <tr>
  71.                                                                 <th class="text-right text-bold" scope="row"><h5>#{{ loop.index }}</h5></th>
  72.                                                                 <td><a href="{{ path('crewDetail', {id: crew.id}) }}">{{ crew.name }}</a></td>
  73.                                                                 <td>{{ crew.rappers|length }}</td>
  74.                                                                 <td class="text-right" >{{ crew.rank }}</td>
  75.                                                             </tr>
  76.                                                         {% endfor %}
  77.                                                     {% else %}
  78.                                                         <tr>
  79.                                                             <td></td>
  80.                                                             <td class="text-center w-100">No crews :(</td>
  81.                                                             <td></td>
  82.                                                         </tr>
  83.                                                     {% endif %}
  84.                                                     </tbody>
  85.                                                 </table>
  86.                                             </div>
  87.                                         </div>
  88.                                     </div>
  89.                                 </div>
  90.                             </div>
  91.                         </div>
  92.                     </div>
  93.                 </div>
  94.             </div>
  95.         </div>
  96.     </section>
  97. {% endblock %}