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-12 10:45:48 +00:00
parent 89b88ee4cb
commit 3eb550d297

View File

@@ -1,10 +1,6 @@
{% macro show_more(url=None, label=None, with_border=True) %}
{% if url and label %}
<a
href="{{ url }}"
class="show-more{% if not with_border %}-no-border{% endif %}"
><span>{{ label }}</span></a>
{% else %}
<span class="show-more-empty"></span>
{% endif %}
{% macro show_more(url, label, with_border=True) %}
<a
href="{{ url }}"
class="show-more{% if not with_border %}-no-border{% endif %}"
><span>{{ label }}</span></a>
{% endmacro %}