{% if res.url %}
{% if res.resource_type in ('listing', 'service') %}
{{ _('View') }}
{% elif res.resource_type == 'api' %}
{{ _('API Endpoint') }}
{% elif h.downloadable(res) %}
{% snippet 'versioned_datastore/snippets/download_button.html', resources=res.id, query="FROM URL" if res.datastore_active else {}, icon_class="fas fa-cloud-download-alt", label=_('Download'), non_datastore=not res.datastore_active %}
{% else %}
{{ _('Go to resource') }}
{% endif %}
{% endif %}