{% import "entity_macros.html" as entity_macros %} {% macro pagination_row(hits, with_links=False) %} {% if with_links and hits.offset %} « prev {% endif %} {% if hits.count_returned == 0 %} Showing 0 references {% else %} Showing {{ "{:,}".format(hits.offset + 1) }} - {{ "{:,}".format(hits.offset + hits.count_returned) }} of {{ "{:,}".format(hits.count_total) }} references {% endif %} {% if with_links and hits.count_total != hits.count_returned and hits.offset + hits.limit < hits.count_total %} next » {% endif %} {% endmacro %} {% macro refs_table(hits, direction) %}
{{ pagination_row(hits, with_links=False) }} (in {{ hits.query_wall_time_ms }}ms) | ||
---|---|---|
No References Found
{% endif %}
{% for row in hits.result_refs %}
{% set release = row.release %}
| ||
{# TODO: ref_locator? #}
{% if direction == "out" %}
{% if row.ref.ref_key %}
[{{ row.ref.ref_key }}] {% endif %} {% endif %} {% if row.ref.match_status == "exact" %} {% set match_icon = "linkify" %} {% elif row.ref.match_status == "unmatched" %} {% set match_icon = "question circle outline" %} {% else %} {% set match_icon = "magic" %} {% endif %} {% if row.ref.match_provenance %} via {{ row.ref.match_provenance }} {% endif %} |
{% if release %}
{{ entity_macros.release_summary(release) }}
{% elif direction == "in" and row.ref.source_wikipedia_article %}
{% set wiki_lang = row.ref.source_wikipedia_article.split(':')[0] %}
{% set wiki_article = ':'.join(row.ref.source_wikipedia_article.split(':')[1:]) %}
{{ wiki_article }}
[wikipedia]
lang:{{ wiki_lang }} [references] {% elif direction == "out" and row.ref.target_unstructured %} {{ row.ref.target_unstructured }}
{% if row.ref.target_openlibrary_work %}
openlibrary:{{ row.ref.target_openlibrary_work }} [cited-by] {% endif %} {% elif direction == "out" and row.ref.target_csl %} {{ entity_macros.csl_summary(row.ref.target_csl) }} {% else %} blank {% endif %} |
{% if row.access %}
{% for access in row.access %}
{%- if access.access_type.name == "wayback" %}
web.archive.org
{%- elif access.access_type.name == "ia_file" -%}
archive.org
{%- else -%}
{{ access.access_type.name }}
{%- endif -%}
{%- if access.mimetype == "application/pdf" %}
[PDF]
{%- elif access.mimetype == "text/html" %}
[HTML]
{%- endif -%}
{% endfor %} {% elif direction == "out" and row.ref.target_unstructured %} {% endif %} {% endfor %} |
{% if hits.count_returned != hits.count_total %}
|