Skip to content

Commit

Permalink
Featured view check
Browse files Browse the repository at this point in the history
  • Loading branch information
blagojabozinovski committed Aug 5, 2024
1 parent 08f0622 commit e7f7545
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions ckanext/iaea/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,15 @@ 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:
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)
else
return None


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

0 comments on commit e7f7545

Please sign in to comment.