infobox.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% from 'oscar/macros.html' import result_link with context %}
  2. <div class="panel panel-default infobox">
  3. <div class="panel-heading">{{- "" -}}
  4. <h4 class="panel-title infobox_part"><bdi>{{ infobox.infobox }}</bdi></h4>{{- "" -}}
  5. </div>
  6. <div class="panel-body">
  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 %}<bdi><p class="infobox_part">{{ infobox.content | safe }}</p></bdi>{% endif %}
  9. {% if infobox.attributes -%}
  10. <table class="table table-striped infobox_part">
  11. {% for attribute in infobox.attributes -%}
  12. <tr>{{- "" -}}
  13. <td><bdi>{{ attribute.label }}</bdi></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. {% if attribute.label == 'Instance of' %}
  18. <td><bdi><a href="https://wikidata.org/wiki/{{ attribute.value.id }}">{{ attribute.value.id }}</a></bdi></td>
  19. {% else %}
  20. <td><bdi>{{ attribute.value }}</bdi></td>
  21. {%- endif -%}
  22. {%- endif -%}
  23. </tr>
  24. {% endfor -%}
  25. </table>
  26. {% endif %}
  27. {% if infobox.urls -%}
  28. <div class="infobox_part">{{- "\n" -}}
  29. <bdi>
  30. {%- for url in infobox.urls -%}
  31. <p class="btn btn-default btn-xs">{{ result_link(url.url, url.title) }}</p>
  32. {% endfor -%}
  33. </bdi>{{- "" -}}
  34. </div>
  35. {% endif %}
  36. </div>
  37. </div>