infobox.html 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <div class="panel panel-default infobox">
  2. <div class="panel-heading">
  3. <h4 class="panel-title infobox_part">{{ infobox.infobox }}</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 %}<p class="infobox_part">{{ infobox.content }}</p>{% endif %}
  8. {% if infobox.attributes %}
  9. <table class="table table-striped infobox_part">
  10. {% for attribute in infobox.attributes %}
  11. <tr>
  12. <td>{{ attribute.label }}</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>{{ attribute.value }}</td>
  17. {% endif %}
  18. </tr>
  19. {% endfor %}
  20. </table>
  21. {% endif %}
  22. {% if infobox.urls %}
  23. <div class="infobox_part">
  24. {% for url in infobox.urls %}
  25. <p class="btn btn-default btn-xs"><a href="{{ url.url }}" rel="noreferrer">{{ url.title }}</a></p>
  26. {% endfor %}
  27. </div>
  28. {% endif %}
  29. </div>
  30. </div>