BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

store.twig 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% for item in list %}
  2. {% if loop.first %}
  3. <div class="thin">
  4. {% if discount %}
  5. <h3 style="text-align: center; color: lime;">All prices currently {{ min(100, max(0, discount)) }}% off &mdash; Hurry, sale ends soon &mdash; While stocks last!</h3>
  6. {% endif %}
  7. {% if admin %}
  8. <div class="pad box">
  9. <div class="thin">NB: Bonus Shop discounts are set in the <a href="/tools.php?action=site_options">Site Options</a>.</div>
  10. </div>
  11. {% endif %}
  12. <table>
  13. <thead>
  14. <tr class="colhead">
  15. <td>Description</td>
  16. <td width="60px">Points</td>
  17. <td width="120px">Checkout</td>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. {% endif %}
  22. {% if item.MinClass <= class %}
  23. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  24. <td>{{ item.Title }}</td>
  25. <td style="text-align:right">{{ item.Price|number_format }}</td>
  26. <td>
  27. {% if points >= item.Price %}
  28. <a id="bonusconfirm" href="bonus.php?action=purchase&amp;label={{ item.Label
  29. }}&amp;auth={{ auth }}" onclick="{{ item.JS_on_click }}(event, '{{ item.Title }}', {{ item.JS_next_function }}, this);">Purchase</a>
  30. {% else %}
  31. <span style="font-style: italic">Too Expensive</span>
  32. {% endif %}
  33. {% endif %}
  34. </td>
  35. </tr>
  36. {% if loop.last %}
  37. </tbody>
  38. </table>
  39. <br />
  40. </div>
  41. {% endif %}
  42. {% endfor %}