Skip to content

Commit

Permalink
Passing CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
stefrado committed Oct 16, 2024
1 parent 79debf2 commit f6d2a74
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/sdg/producten/templatetags/producten.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,9 @@ def field_info(field: ProductFieldMetadata, **kwargs):


@register.inclusion_tag("producten/_include/publications.html")
def publications(product, publication_links, concept_url, **kwargs):
return {**kwargs, "product": product, "publication_links": publication_links, "concept_url": concept_url}
def publications(product, publication_links, concept_url):
return {
"product": product,
"publication_links": publication_links,
"concept_url": concept_url
}

0 comments on commit f6d2a74

Please sign in to comment.