infobox.html 1.3KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="panel panel-default infobox">
  2. <div class="panel-heading">
  3. <bdi><h4 class="panel-title infobox_part">{{ infobox.infobox }}</h4></bdi>
  4. </div>
  5. <div class="panel-body">
  6. <bdi>
  7. {% if infobox.img_src %}<img class="img-responsive center-block infobox_part" src="{{ image_proxify(infobox.img_src) }}" alt="{{ infobox.infobox }}" />{% endif %}
  8. {% if infobox.content %}<p class="infobox_part">{{ infobox.content }}</p>{% endif %}
  9. {% if infobox.attributes %}
  10. <table class="table table-striped infobox_part">
  11. {% for attribute in infobox.attributes %}
  12. <tr>
  13. <td>{{ attribute.label }}</td>
  14. {% if attribute.image %}
  15. <td><img class="img-responsive" src="{{ image_proxify(attribute.image.src) }}" alt="{{ attribute.image.alt }}" /></td>
  16. {% else %}
  17. <td>{{ attribute.value }}</td>
  18. {% endif %}
  19. </tr>
  20. {% endfor %}
  21. </table>
  22. {% endif %}
  23. {% if infobox.urls %}
  24. <div class="infobox_part">
  25. {% for url in infobox.urls %}
  26. <p class="btn btn-default btn-xs"><a href="{{ url.url }}" rel="noreferrer">{{ url.title }}</a></p>
  27. {% endfor %}
  28. </div>
  29. {% endif %}
  30. </bdi>
  31. </div>
  32. </div>