Skip to content

Commit

Permalink
Featured-view-check-prod
Browse files Browse the repository at this point in the history
  • Loading branch information
blagojabozinovski committed Aug 5, 2024
1 parent 40354ae commit 6dcc582
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ckanext/iaea/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ def suggested_filter_fields_serializer(datapackage, view_dict):

def featured_view_url(pkg):
featured_view = model.ResourceView.get(pkg['featured_view'])
return toolkit.h.url_for(qualified=True, controller='dataset_resource',
action='view', id=pkg['name'],
resource_id=featured_view.resource_id,
view_id=featured_view.id)
if featured_view:
return toolkit.h.url_for(qualified=True, controller='dataset_resource',
action='view', id=pkg['name'],
resource_id=featured_view.resource_id,
view_id=featured_view.id)
else:
return None


class IaeaPlugin(plugins.SingletonPlugin, toolkit.DefaultDatasetForm,
Expand Down

0 comments on commit 6dcc582

Please sign in to comment.