Disable admin detail link when no URL

This commit is contained in:
Ryan P Kilby 2018-05-15 12:54:02 -04:00
parent 86f5cb7cdd
commit ecc48adc8e

View File

@ -14,7 +14,11 @@
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<td> <td>
{% if row.url %}
<a href="{{ row.url }}"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></a> <a href="{{ row.url }}"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></a>
{% else %}
<span class="glyphicon glyphicon-chevron-right text-muted" aria-hidden="true"></span>
{% endif %}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}