templates/pages/warrants.twig line 1

Open in your IDE?
  1. {% extends 'template.twig' %}
  2. {% block cssAssets %}
  3. {% endblock %}
  4. {% block jsAssets %}
  5.     {% include 'includes/vue.twig' %}
  6.     {% include 'includes/modal.vge.twig' %}
  7. {% endblock %}
  8. {% block pageTitle %}
  9.     Warrants
  10. {% endblock %}
  11. {% block content %}
  12.     <p>
  13.         <i class="fa fa-info fa-2x fa-pull-left highlight" data-fa-transform="shrink-2" data-fa-mask="fas fa-circle"></i>
  14.         The following individuals are wanted by the Galactic Empire.
  15.         <br />
  16.         Bounties will be paid only when the subject is handed over to Imperial Security forces (for those wanted alive), or when proof of death is presented (an ear).
  17.         To claim a bounty, please contact the Imperial Security Bureau or Imperial Intelligence, depending on the nature of the subject's crimes.
  18.         All Imperials are authorised to arrest these individuals on sight.  Only those with clearance approved by Imperial High Command or the Imperial Security Bureau may execute on sight.
  19.         <br />
  20.         Rewards of a reduced value may also be available for information that leads to the subsequent capture or execution of individuals on this list. Information should be sent to the same agencies as above.
  21.         To find out more about a specific subject, please click their image below.
  22.     </p>
  23.     <div id="vue" style="display: flex; flex-wrap: wrap; justify-content: center;">
  24.     {% for warrant in warrants %}
  25.             <div class="warrant" is="vge-modal" style="display: inline-block; margin: 0 5px;">
  26.                 <img src="{{ warrant.avatar }}" slot="controller" style="cursor: help;">
  27.                 <h1 slot="header" style="display: none" :style="{display: 'inline'}">{{ warrant.name }}</h1>
  28.                 <div slot="body" style="display: none" :style="{display: 'block'}">
  29.                     <table class="infoTableVertical" style="font-size: smaller">
  30.                         <tr>
  31.                             <th>Wanted</th>
  32.                             <td>{{ warrant.result }}</td>
  33.                         </tr>
  34.                         <tr>
  35.                             <th>Reward</th>
  36.                             <td>{{ warrant.amount }} 000 000 credits</td>
  37.                         </tr>
  38.                         <tr>
  39.                             <th>Status</th>
  40.                             <td>{{ warrant.status }}</td>
  41.                         </tr>
  42.                         <tr>
  43.                             <th>Crimes</th>
  44.                             <td>{{ warrant.crimes|raw }}</td>
  45.                         </tr>
  46.                         <tr>
  47.                             <th>Information</th>
  48.                             <td>{{ warrant.desc|raw }}</td>
  49.                         </tr>
  50.                     </table>
  51.                 </div>
  52.             </div>
  53.     {% endfor %}
  54.     </div>
  55. {% endblock %}