Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Explore Dropdown Fix + Tag List Fix (Released) #72

Merged
merged 4 commits into from
Jul 6, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 2 additions & 45 deletions ckanext/usmetadata/templates/package/snippets/resource_item.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{% ckan_extends %}

{% set can_edit = h.check_access('package_update', {'id':pkg.id }) %}
{% set url_action = 'edit' if url_is_edit and can_edit else 'read' %}
{% set url = h.url_for(controller='resource', action=url_action, id=pkg.name, resource_id=res.id) %}
Expand All @@ -23,49 +25,4 @@
</span>
{% endif %}
</p>
{% block resource_item_explore %}
{% if not url_is_edit %}
<div class="dropdown btn-group">
<a href="#" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
<i class="icon-share-alt"></i>
{{ _('Explore') }}
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
{% block resource_item_explore_links %}
<li>
<a href="{{ url }}">
{% if res.can_be_previewed %}
<i class="icon-bar-chart"></i>
{{ _('Preview') }}
{% else %}
<i class="icon-info-sign"></i>
{{ _('More information') }}
{% endif %}
</a>
</li>
<li>
<a href="{{ res.url }}" class="resource-url-analytics" target="_blank">
{% if res.can_be_previewed %}
<i class="icon-download"></i>
{{ _('Download') }}
{% else %}
<i class="icon-external-link"></i>
{{ _('Go to resource') }}
{% endif %}
</a>
</li>
{% if can_edit %}
<li>
<a href="{{ h.url_for(controller='resource', action='edit', id=pkg.name, resource_id=res.id) }}">
<i class="icon-edit"></i>
{{ _('Edit') }}
</a>
</li>
{% endif %}
{% endblock %}
</ul>
</div>
{% endif %}
{% endblock %}
</li>
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='ckanext-usmetadata',
version='0.3.0',
version='0.3.1',
description='US Metadata Plugin for CKAN',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down