macros.html 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <!-- Draw glyphicon icon from bootstrap-theme -->
  2. {% macro icon(action) -%}
  3. <span class="glyphicon glyphicon-{{ action }}"></span>
  4. {%- endmacro %}
  5. <!-- Draw favicon -->
  6. {% macro draw_favicon(favicon) -%}
  7. <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
  8. {%- endmacro %}
  9. {%- macro result_link(url, title, classes='') -%}
  10. <a href="{{ url }}" {% if classes %}class="{{ classes }}" {% endif %}{% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ title }}</a>
  11. {%- endmacro -%}
  12. <!-- Draw result header -->
  13. {% macro result_header(result, favicons) -%}
  14. <h4 class="result_header">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{{ result_link(result.url, result.title|safe) }}</h4>
  15. {%- endmacro %}
  16. <!-- Draw result sub header -->
  17. {% macro result_sub_header(result) -%}
  18. {% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %}
  19. {% if result.magnetlink %}<small> &bull; {{ result_link(result.magnetlink, icon('magnet') + _('magnet link'), "magnetlink") }}</small>{% endif %}
  20. {% if result.torrentfile %}<small> &bull; {{ result_link(result.torrentfile, icon('download-alt') + _('torrent file'), "torrentfile") }}</small>{% endif %}
  21. {%- endmacro %}
  22. <!-- Draw result footer -->
  23. {% macro result_footer(result) -%}
  24. <div class="clearfix"></div>
  25. <div class="pull-right">
  26. {% for engine in result.engines %}
  27. <span class="label label-default">{{ engine }}</span>
  28. {% endfor %}
  29. <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info") }}</small>
  30. {% if proxify %}
  31. <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small>
  32. {% endif %}
  33. </div>
  34. <div class="external-link">{{ result.pretty_url }}</div>
  35. {%- endmacro %}
  36. <!-- Draw result footer without cache link -->
  37. {% macro result_footer_nocache(result) -%}
  38. <div class="clearfix"></div>
  39. <div class="pull-right">
  40. {% for engine in result.engines %}
  41. <span class="label label-default">{{ engine }}</span>
  42. {% endfor %}
  43. {% if proxify %}
  44. <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small>
  45. {% endif %}
  46. </div>
  47. <div class="external-link">{{ result.pretty_url }}</div>
  48. {%- endmacro %}
  49. <!-- Draw result footer -->
  50. {% macro result_footer_rtl(result) -%}
  51. <div class="clearfix"></div>
  52. {% for engine in result.engines %}
  53. <span class="label label-default">{{ engine }}</span>
  54. {% endfor %}
  55. <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info") }}</small>
  56. {% if proxify %}
  57. <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small>
  58. {% endif %}
  59. <div class="external-link">{{ result.pretty_url }}</div>
  60. {%- endmacro %}
  61. <!-- Draw result footer without cache link -->
  62. {% macro result_footer_nocache_rtl(result) -%}
  63. <div class="clearfix"></div>
  64. {% for engine in result.engines %}
  65. <span class="label label-default">{{ engine }}</span>
  66. {% endfor %}
  67. {% if proxify %}
  68. <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small>
  69. {% endif %}
  70. <div class="external-link">{{ result.pretty_url }}</div>
  71. {%- endmacro %}
  72. {% macro preferences_item_header(info, label, rtl) -%}
  73. {% if rtl %}
  74. <div class="row form-group">
  75. <label class="col-sm-3 col-md-2 pull-right">{{ label }}</label>
  76. <span class="col-sm-5 col-md-6 help-block pull-left">{{ info }}</span>
  77. <div class="col-sm-4 col-md-4">
  78. {% else %}
  79. <div class="row form-group">
  80. <label class="col-sm-3 col-md-2">{{ label }}</label>
  81. <div class="col-sm-4 col-md-4">
  82. {% endif %}
  83. {%- endmacro %}
  84. {% macro preferences_item_footer(info, label, rtl) -%}
  85. {% if rtl %}
  86. </div>
  87. </div>
  88. {% else %}
  89. </div>
  90. <span class="col-sm-5 col-md-6 help-block">{{ info }}</span>
  91. </div>
  92. {% endif %}
  93. {%- endmacro %}
  94. {% macro checkbox_toggle(id, blocked) -%}
  95. <div class="onoffswitch">
  96. <input type="checkbox" id="{{ id }}" name="{{ id }}"{% if blocked %} checked="checked"{% endif %} class="onoffswitch-checkbox">
  97. <label class="onoffswitch-label" for="{{ id }}">
  98. <span class="onoffswitch-inner"></span>
  99. <span class="onoffswitch-switch"></span>
  100. </label>
  101. </div>
  102. {%- endmacro %}
  103. {% macro support_toggle(supports) -%}
  104. {% if supports %}
  105. <span class="label label-success">
  106. {{ _("supported") }}
  107. </span>
  108. {% else %}
  109. <span class="label label-danger">
  110. {{ _("not supported") }}
  111. </span>
  112. {% endif %}
  113. {%- endmacro %}