Remove empty version of show more

We’re not using it now that tables on the dashboard have borders between
the rows.
This commit is contained in:
Chris Hill-Scott
2020-02-17 09:55:53 +00:00
parent 89b88ee4cb
commit 3eb550d297
+5 -9
View File
@@ -1,10 +1,6 @@
{% macro show_more(url=None, label=None, with_border=True) %} {% macro show_more(url, label, with_border=True) %}
{% if url and label %} <a
<a href="{{ url }}"
href="{{ url }}" class="show-more{% if not with_border %}-no-border{% endif %}"
class="show-more{% if not with_border %}-no-border{% endif %}" ><span>{{ label }}</span></a>
><span>{{ label }}</span></a>
{% else %}
<span class="show-more-empty"></span>
{% endif %}
{% endmacro %} {% endmacro %}