aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/templates/search_macros.html
blob: d267cdc9cd9170288ab0525b2e96738f320c7c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519

{% macro tag_label(tag) -%}
  {% if tag == "oa" %}
    <span class="ui label basic orange small" title="Open Access">OA</span>
  {% elif tag == "jstor" %}
    <span class="ui label basic purple small" title="Preserved in JSTOR">JSTOR</span>
  {% elif tag == "scielo" %}
    <span class="ui label basic purple small" title="Hosted on SciELO platform">SciELO</span>
  {% elif tag == "ojs" %}
    <span class="ui label basic purple small" title="Hosted with Open Journal Systems">OJS</span>
  {% elif tag == "wordpress" %}
    <span class="ui label basic purple small" title="Hosted with Wordpress">Wordpress</span>
  {% elif tag == "road" %}
    {# skip for now; no curration? #}
    {# <span class="ui label basic orange small" title="ISSN Registry of Open Access Journals">ROAD</span> #}
  {% elif tag == "szczepanski" %}
    <span class="ui label basic orange small" title="Szcezepanski OA Journal List">Szczepanski</span>
  {% elif tag == "doaj" %}
    <span class="ui label basic orange small" title="Directory of Open Access Journals">DOAJ</span>
  {% elif tag.startswith("lang:") %}
    <span class="ui label basic black small" title="ISO Language Code">{{ tag }}</span>
  {% else %}
    {# disabling "other" tags for now #}
    {# <span class="ui label basic grey small">{{ _(tag) }}</span> #}
  {% endif %}
{% endmacro %}

{% macro external_identifiers(biblio) -%}
  {# NOTE: should be able to call with paper.biblio or any paper.release[] #}
  {% if biblio.doi %}
    <a target="_blank" rel="external noopener noreferrer" href="https://doi.org/{{ biblio.doi }}" style="color: green;">doi:{{ biblio.doi }}</a> &nbsp;
  {% endif %}
  {% if biblio.pmid %}
    <a target="_blank" rel="external noopener" href="https://www.ncbi.nlm.nih.gov/pubmed/{{ biblio.pmid }}" style="color: green;">pmid:{{ biblio.pmid }}</a> &nbsp;
  {% endif %}
  {% if biblio.pmcid %}
    <a target="_blank" rel="external noopener" href="https://pubmed.ncbi.nlm.nih.gov/{{ biblio.pmcid }}/" style="color: green;">pmcid:{{ biblio.pmcid }}</a> &nbsp;
  {% endif %}
  {% if biblio.arxiv_id %}
    <a target="_blank" rel="external noopener" href="https://arxiv.org/abs/{{ biblio.arxiv_id }}" style="color: green;">arXiv:{{ biblio.arxiv_id }}</a> &nbsp;
  {% endif %}
  {% if biblio.dblp_id %}
    <a target="_blank" rel="external noopener" href="https://dblp.org/rec/{{ biblio.dblp_id }}.html" style="color: green;">dblp:{{ biblio.dblp_id }}</a> &nbsp;
  {% endif %}
  {% if biblio.doaj_id %}
    <a target="_blank" rel="external noopener" href="https://doaj.org/article/{{ biblio.doaj_id }}" style="color: green;">doaj:{{ biblio.doaj_id }}</a> &nbsp;
  {% endif %}
  {% if biblio.release_ident or biblio.ident %}
    <a target="_blank" rel="external noopener" href="https://fatcat.wiki/release/{{ biblio.release_ident or biblio.ident }}" style="color: green;">fatcat:{{ biblio.release_ident or biblio.ident }}</a> &nbsp;
  {% endif %}
{% endmacro %}

{% macro ia_access_button(access) -%}
  {% set access_alt = _('fulltext access') %}
  <a target="_blank" rel="noopener" href="{{ access.access_url}}" title="{{ access_alt }}" {% if settings.ENABLE_GOATCOUNTER %}data-goatcounter-click="serp-fulltext-button"{% endif %}>
    <button class="ui compact black labeled icon button serp-button">
      <i class="icon" style="background: no-repeat center / 50% url('/static/ia-favicon.ico');"></i>
      {% if access.access_type in ["wayback",] %}
        Wayback
      {% elif access.access_type in ["ia_file",] %}
        File
      {% elif access.access_type == "ia_sim" %}
        Microfilm
      {% else %}
        Other
      {% endif %}
    </button>
  </a>
{% endmacro %}

{% macro journal_row(biblio, paper) -%}
  {# NOTE: should be able to call with paper.biblio or any paper.release[] #}
  {% if biblio.release_year %}
    <span title="{{ biblio.release_date or '' }}">{{ biblio.release_year }}</span>
  {% endif %}
  {% if biblio.container_name %}
    <i {% if biblio.publisher %}title="{{ biblio.publisher }}"{% endif %}>
    {% if biblio.container_ident %}
      <a target="_blank" rel="noopener" href="https://fatcat.wiki/container/{{ biblio.container_ident }}" style="color: black;">{{ biblio.container_name }}</a>
    {% elif paper.doc_type == "sim_page" %}
      <a target="_blank" rel="noopener" href="https://archive.org/details/{{ paper.ia_sim.pub_collection }}" style="color: black;">{{ biblio.container_name }}</a>
    {% else %}
      {{ biblio.container_name }}
    {% endif %}
    </i>
    &nbsp;
  {% endif %}

  {% if biblio.release_stage == "submitted" %}
    <span class="release-stage" >pre-print</span>
  {% elif biblio.release_stage and biblio.release_stage != "published" %}
    <span class="release-stage">{{ biblio.release_stage }}</span>
  {% elif not biblio.release_stage %}
    <span class="release-stage">unpublished</span>
  {% endif %}

  {% if biblio.withdrawn_status %}
    <span class="release-stage" style="color: red;">{{ biblio.withdrawn_status }}</span>
  {% endif %}
{% endmacro %}

{% macro fulltext_search_result_row(paper, locale=None, debug_mode=False) -%}
<div class="ui stackable doubling grid">
<div class="thirteen wide column biblio-record">

<details class="access-options">
<summary>
  {# ### TITLE ROW #}
  <h3 class="biblio-title">

    {% if paper.doc_type == "work" %}
      <span style="color: #2224c7; cursor: pointer;">
        {% if paper.biblio.title %}
          {{ paper.biblio.title[:512] }}
          {% if paper.biblio.title|length > 512 %}...{% endif %}
        {% else %}
          [blank]
        {% endif %}
      </span>
      {# release type suffix #}
      <span class="release-type" >
      {% if paper.biblio.release_type in ("article-journal", "paper-conference") or paper.doc_type == "sim_page" %}
        {# pass #}
      {% elif paper.biblio.release_type in ("book", "chapter", "dataset") %}
        [{{ _(paper.biblio.release_type) }}]
      {% elif not paper.biblio.release_type %}
        [{{ _("unknown") }}]
      {% else %}
        [{{ _(paper.biblio.release_type) }}]
      {% endif %}
      </span>

      {# show inverse of title/original_title above #}
      {% if paper.biblio.original_title and paper.biblio.title != paper.biblio.original_title %}
        <br>
        <span class="original-title">
          {{ paper.biblio.original_title[:512] }} {% if paper.biblio.original_title|length > 512 %}...{% endif %}
        </span>
      {% endif %}

    {% elif paper.doc_type == "sim_page" %}
      <a target="_blank" rel="noopener" href="https://archive.org/details/{{ paper.ia_sim.issue_item }}/page/{{ paper.ia_sim.first_page }}" title="{{ _('access microfilm on archive.org') }}" {% if settings.ENABLE_GOATCOUNTER %}data-goatcounter-click="serp-title-sim-page"{% endif %}>
        {% trans page_num = paper.ia_sim.first_page, journal_name = paper.biblio.container_name, volume = paper.biblio.volume, issue = paper.biblio.issue %}Page {{ page_num }} of {{ journal_name }} Vol. {{ volume }}, Issue {{ issue }}{% endtrans %}
      </a>
      <span class="release-type">[{{ _("page") }}]</span>
    {% endif %}

  </h3>

  {# ### AUTHOR ROW #}
  {% if paper.biblio.contrib_names %}
    <div class="author-row">
    {{ ", ".join(paper.biblio.contrib_names[:12]) }}
    {% if paper.biblio.contrib_names|length > 12 %}<i>(+{{ paper.biblio.contrib_names|length - 12 }} others)</i>{% endif %}
    </div>
  {% endif %}


  {# ### JOURNAL ROW #}
  {{ journal_row(paper.biblio, paper) }}

</summary>
<div class="menu">
  {# ### FULLTEXT ACCESS OPTIONS #}
  <h4 class="ui horizontal divider header">
    {% trans %}Preserved Fulltext{% endtrans %}
  </h4>

  {% if paper.fulltext %}
    <div class="ui items">
      <div class="item">
        <div class="image">
          <a target="_blank" rel="noopener" href="{{ paper.fulltext.access_url }}">
          {% if paper.fulltext.thumbnail_url %}
            <div class="ui serp card">
              <img src="{{ paper.fulltext.thumbnail_url }}" alt="fulltext thumbnail" loading="lazy">
            </div>
          {% else %}
            <div class="ui serp card" style="box-shadow: none;">
              <img src="/static/document-icon.svg" style="opacity: 0.6;" alt="">
            </div>
          {% endif %}
          </a>
        </div>
        <div class="content">
          <div class="header">
            <a href="{{ paper.fulltext.access_url }}">
            {% if paper.fulltext.access_type == "wayback" %}
              Web Archive Capture
            {% elif paper.fulltext.access_type == "ia_file" %}
              Archive Collections
            {% elif paper.fulltext.access_type == "ia_sim" %}
              Digitized Microfilm
            {% endif %}
            </a>
          </div>
          <div class="description">
            {% if paper.fulltext.access_type == "wayback" %}
              <p>A copy of this work was available on the public web and has been preserved in the Wayback Machine. The capture dates from {{ paper.fulltext.access_url.split('/')[4][:4] }}; you can also visit <a href="{{ '/'.join(paper.fulltext.access_url.split('/')[5:]) }}">the original URL</a>.
            {% elif paper.fulltext.access_type == "ia_file" %}
              <p>{% trans %}The Internet Archive has a preservation copy of this work in our general collections.{% endtrans %}
            {% elif paper.fulltext.access_type == "ia_sim" %}
              <p>{% trans %}The Internet Archive has digitized a microfilm copy of this work. It may be possible to borrow a copy for reading.{% endtrans %}
            {% endif %}

            {% if paper.fulltext.file_mimetype %}
              <p>The file type is <code>{{ paper.fulltext.file_mimetype }}</code>.
            {% endif %}

            {% if paper.fulltext.release_ident and (paper.biblio.release_ident != paper.fulltext.release_ident) %}
              {# Fulltext copy is different from biblio version! #}
              <p>Note that this fulltext copy is not of the "primary" version
              of this work. The version it corresponds to is:
              <div class="ui fitted divider"></div>
              {% for release in paper.releases if release.ident == paper.fulltext.release_ident %}
                {{ journal_row(release, paper) }}
                <br>
                {{ external_identifiers(release) }}
              {% endfor %}
              <div class="ui fitted divider"></div>
            {% endif %}
          </div>
          <div class="extra">
          {# currently, ia_sim access types are not linked to specific versions #}
          {% for access in paper.access if access.access_type != paper.fulltext.access_type and (access.release_ident == paper.fulltext.release_ident or access.release_ident == paper.biblio.release_ident or access.access_type == 'ia_sim') %}
            {% if loop.first %}
              <p>Additional access options for the primary version of this work:
            {% endif %}
            {{ ia_access_button(access )}}
          {% endfor %}
          </div>
        </div>
      </div>
    </div>
  {% else %}
    {# No fulltext case #}
    <p>{% trans %}We don't yet know of a public preservation copy of this work. You may be able to obtain a copy of this work to read from the publisher, platforms, or institutional libraries.{% endtrans %}
    {% if paper.doc_type == "work" %}
      {% set save_paper_now_url = "https://fatcat.wiki/release/" + paper.biblio.release_ident + "/save" %}
      <p>{% trans %}If you know of a legal, public version that we should archive, please let us know via <a rel="noopener" href="{{ save_paper_now_url }}">"Save Paper Now"</a>.{% endtrans %}
    {% endif %}
  {% endif %}

  {% if paper.releases|length > 1 %}
  <h4 class="ui horizontal divider header">
    {# <i class="tag icon"></i> #}
    Other Versions
  </h4>
    {% for release in paper.releases if (release.ident != paper.biblio.release_ident and release.ident != paper.fulltext.release_ident) %}
      <div class="biblio-record">
        {{ journal_row(release, paper) }}
        <br>
        {{ external_identifiers(release) }}
        <br>
        {% for access in paper.access if access.release_ident == release.ident %}
          {{ ia_access_button(access )}}
        {% endfor %}
      </div>
      {% if not loop.last %}
        <div class="ui divider"></div>
      {% endif %}
    {% endfor %}
  {% endif %}
  <div class="ui divider"></div>
</div>
</details>


  {# ### ABSTRACT / QUERY HIGHLIGHT #}
  {% if paper._highlights %}
    <div style="padding-top: 0.5em; padding-bottom: 0.5em;" class="search_highlights">
    {# this highlight HTML escape hacking should not be necessary in ES 7.x with highlight escaping #}
    {# but for now we manually escape, then de-escape the 'em' highlight tags #}
    {% autoescape false %}
      {% for highlight in paper._highlights[:3] %}
        {{ highlight|e|replace("&lt;em&gt;", "<em>")|replace("&lt;/em&gt;", "</em>") }} &nbsp;...&nbsp;
      {% endfor %}
    {% endautoescape %}
    </div>
  {% elif paper.abstracts %}
    <div style="padding-top: 0.5em; padding-bottom: 0.5em;">
      {% if paper.abstracts[0].body|length > 500 %}
        {{ paper.abstracts[0].body | truncate(500, False, '') }}
        <details style="display:inline;">
          <summary>{% trans %}more &raquo;{% endtrans %}</summary>
          ... {{ paper.abstracts[0].body[480:] }}
        </details>
      {% else %}
        {{ paper.abstracts[0].body }}
      {% endif %}
    </div>
  {% else %}
    <br>
  {% endif %}

  {# ### IDENTIFIERS #}
  {{ external_identifiers(paper.biblio) }}

  <div style="margin-top: 0.2em;">
  {# ### TAGS #}
    {# colors to use: olive, brown, grey, pink, red, etc #}
    {# TODO: remove doc for ES 7.x-style lack of type #}
    {# TODO: only show 'json' link if from cluster? #}
    {% if debug_mode %}
      <a target="_blank" rel="noopener" href="{{ settings.ELASTICSEARCH_FRONTEND }}/{{ settings.ELASTICSEARCH_FULLTEXT_INDEX }}/_doc/{{ paper.key }}">
        <span class="ui label small" title="search document JSON debug link">json</span>
      </a>
    {% endif %}

    {% for tag in paper.tags|sort %}
      {# HACK: don't show "oa" tag if already obvious #}
      {% if tag != "oa" or ("doaj" not in paper.tags and "szczepanski" not in paper.tags) %}
        {{ tag_label(tag) }}
      {% endif %}
    {% endfor %}
    {% if paper.biblio.lang_code and paper.biblio.lang_code != (locale or 'en') %}
      {{ tag_label("lang:" + paper.biblio.lang_code) }}
    {% endif %}

  </div>

</div>

<div class="three wide left aligned column" style="padding-top: 0.5em; padding-right: 0.5em; min-width: 10em;">
  {# ### ACCESS LINKS #}

  {# archive links (if available) #}
  {% if paper.fulltext and paper.fulltext.access_url %}
    {% if paper.fulltext.file_mimetype == "application/pdf" %}
      {% set access_alt = _('fulltext PDF download') %}
    {% elif paper.fulltext.access_type == "ia_sim" %}
      {% set access_alt = _('read fulltext microfilm') %}
    {% else %}
      {% set access_alt = _('fulltext access') %}
    {% endif %}
    <a target="_blank" rel="noopener" href="{{ paper.fulltext.access_url}}" title="{{ access_alt }}" {% if settings.ENABLE_GOATCOUNTER %}data-goatcounter-click="serp-fulltext-button"{% endif %}>
      <button class="ui simple right pointing dropdown fluid compact black labeled icon button serp-button">
        <i class="icon" style="background: no-repeat center / 50% url('/static/ia-favicon.ico');"></i>
        {% if paper.fulltext.access_type in ["wayback", "ia_file"] %}
          {% if paper.fulltext.file_mimetype == "application/pdf" or not paper.fulltext.file_mimetype %}
            PDF
          {% elif paper.fulltext.file_mimetype == "text/html" %}
            HTML
          {% elif paper.fulltext.file_mimetype == "text/xml" %}
            XML
          {% else %}
            File
          {% endif %}
          {% if paper.fulltext.size_bytes %}
            ({{ paper.fulltext.size_bytes|filesizeformat }})
          {% endif %}
        {% elif paper.fulltext.access_type == "ia_sim" %}
          Microfilm
        {% else %}
          Other
        {% endif %}
      {% if paper.fulltext and paper.fulltext.thumbnail_url %}
        <div class="menu fulltext-thumbnail">
          <img src="{{ paper.fulltext.thumbnail_url }}" alt="fulltext thumbnail" loading="lazy">
        </div>
      {% endif %}
      </button>
    </a>
  {% endif %}

  {# publisher #}
  {% if paper.biblio.doi %}
    <a target="_blank" rel="external noopener noreferrer" href="https://doi.org/{{paper.biblio.doi }}" style="color: green;">
      <button class="ui fluid left aligned compact blue labeled icon button serp-button">
        {% if "oa" in paper.tags %}
          <i class="unlock alternate icon" style="background-color: #fb971f;"></i>
        {% else %}
          <i class="linkify icon"></i>
        {% endif %}
        {# TODO: detect prefix? JSTOR, biorxiv, medrxiv, zenodo, figshare, dryad, etc #}
        {# helpful: https://gist.github.com/TomDemeranville/8699224 #}
        {% if paper.biblio.doi_prefix == "10.6084" %}
          figshare.com
        {% elif paper.biblio.doi_prefix == "10.5281" %}
          zenodo.org
        {% elif paper.biblio.doi_prefix == "10.1371" %}
          plos.org
        {% elif paper.biblio.doi_prefix == "10.1016" %}
          elsevier.com
        {% elif paper.biblio.doi_prefix in ["10.1186", "10.1007"] %}
          springer.com
        {% elif paper.biblio.doi_prefix in ["10.1042", "10.1111", "10.1177"] %}
          sagepub.com
        {% elif paper.biblio.doi_prefix in ["10.1080"] %}
          tandfonline.com
        {% else %}
          Publisher DOI
        {% endif %}
      </button>
    </a>
  {% endif %}

  {# trusted platform fulltext links #}
  {# TODO: DOAJ, dblp #}
  {% if paper.biblio.arxiv_id %}
    <a target="_blank" rel="noopener" href="https://arxiv.org/abs/{{ paper.biblio.arxiv_id }}" title="arxiv.org access">
      <button class="ui fluid compact blue labeled icon button serp-button">
        <i class="file alternate outline icon"></i>
        arxiv.org
      </button>
    </a>
  {% elif paper.biblio.pmcid %}
    <a target="_blank" rel="noopener" href="https://www.ncbi.nlm.nih.gov/pmc/articles/{{paper.biblio.pmcid }}" title="pubmed link">
      <button class="ui fluid compact blue labeled icon button serp-button">
        <i class="file alternate outline icon"></i>
        Pubmed Central
      </button>
    </a>
  {% endif %}

  {# ### VERSIONS #}
  {% if (paper.access and paper.access|length > 1) or (paper.releases and paper.releases|length > 1) %}
    <div class="ui fluid compact basic blue labeled icon button serp-button">
      <i class="ui icon add"></i>
      {% trans %}Multiple Versions{% endtrans %}
    </div>
  {% endif %}

  {# ### COLLAPSED HITS  #}
  {% if paper._collapsed_count > 0 %}
    <button class="ui fluid left aligned basic blue compact button serp-button" form="search_form" type="submit" name="collapse_key" value="{{ paper.collapse_key }}">
      <i class="ui icon zoom-in"></i>
      {% trans trimmed count=paper._collapsed_count %}
        Same Issue ({{ count }})
      {% endtrans %}
    </button>
  {% endif %}

  {# ### OTHER ACTIONS #}
  <div class="action-bar">

    <details class="serp-action-menu">
      <summary>
        <div class="circular ui icon compact basic button">
          <i class="quote left icon"></i>
        </div>
      </summary>
      <div class="citation-menu menu">
        <table class="ui very basic table">
          <tbody>
            <tr>
              <td>Generic</td>
              <td>{{ paper._obj.biblio.citation_str("default") }}</td>
            </tr>
            <tr>
              <td>BibTeX</td>
              <td><pre>{{ paper._obj.biblio.citation_str("bibtex") }}</pre></td>
            </tr>
          </tbody>
        </table>
      </div>
    </details>

    <a href="https://fatcat.wiki/release/{{ paper.biblio.release_ident }}" target="_blank" rel="noopener" title="{{ _('access fatcat landing page') }}">
      <button class="circular ui icon compact basic button">
        <i class="edit icon"></i>
      </button>
    </a>

  </div>

</div>

</div> {# final row close #}
{% endmacro %}

{% macro search_pagination(hits, top) %}
{% if hits.offset > 0 %}
  <button class="text-button" form="search_form" type="submit" name="offset" value="{{ hits.offset - hits.limit }}" style="margin-right: 2em;" rel="prev">
    <a>&#xab; {% trans %}Previous{% endtrans %}</a>
  </button>
{% else %}
  <span style="color:rgba(0,0,0,0.55); margin-right: 2em;">&#xab; {% trans %}Previous{% endtrans %}</span>
{% endif %}
<i>
  {% trans trimmed start=(hits.offset + 1), end=(hits.offset + hits.limit), total="{:,}".format(hits.count_found) %}
    Showing results {{ start }} &mdash; {{ end }} out of {{ total }} results
  {% endtrans %}
</i>
{% if hits.offset + hits.limit < hits.count_found %}
<button class="text-button" form="search_form" type="submit" name="offset" value="{{ hits.offset + hits.limit }}" style="margin-left: 2em;" rel="next">
  <a>{% trans %}Next{% endtrans %} &#xbb;</a>
{% else %}
  <span style="color:rgba(0,0,0,0.55); margin-left: 2em;">{% trans %}Next{% endtrans %} &#xbb;</span>
{% endif %}
</button>
{% endmacro %}

{% macro query_option(options, selected) -%}
<div>
  <label for="{{ options.slug }}" style="color: rgba(0,0,0,0.55);">{{ _(options.label) }}</label>
  <div class="ui link list" style="margin-top: 0.3em;">
    {% for opt in options.list %}
      <button class="text-button" form="search_form" type="submit" name="{{ options.slug }}" value="{{ opt.slug }}">
        {% if selected == opt.slug or (not selected and opt.slug == options.default) %}
          <span style="font-weight: bold;">
        {% else %}
          <span>
        {% endif %}
        {{ _(opt.label) }}
        </span>
      </button>
      <br>
    {% endfor %}
  </div>
</div>
<br>
{% endmacro %}

{% macro query_hidden(options, selected) -%}
{% if selected %}
  <input form="search_form" type="hidden" name="{{ options.slug }}" value="{{ selected }}">
{% endif %}
{% endmacro %}