infobox.html 1.4 KB

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