"url()" dicenta "url_for()"

This commit is contained in:
Elia Bellavista 2024-05-02 17:00:40 +02:00
parent 678e378483
commit 265cd14a42
5 changed files with 20 additions and 20 deletions

View File

@ -172,7 +172,7 @@
</head> </head>
{# Allows custom attributes to be added to the <body> tag #} {# Allows custom attributes to be added to the <body> tag #}
<body{% block bodytag %} data-site-root="{{ h.url('/', locale='default', qualified=true) }}" data-locale-root="{{ h.url('/', qualified=true) }}" {% endblock %}> <body {% block bodytag %} data-site-root="{{ h.url_for('/', locale='default', qualified=true) }}" data-locale-root="{{ h.url_for('/', qualified=true) }}" {% endblock %}>
<div id="ckan-page-loading"></div> <div id="ckan-page-loading"></div>
{# {#
The page block allows you to add content to the page. Most of the time it is The page block allows you to add content to the page. Most of the time it is

View File

@ -95,10 +95,10 @@
{% block header_logo %} {% block header_logo %}
{% if g.site_logo %} {% if g.site_logo %}
<a class="logo" href="{{ h.url('home') }}"><img src="{{ h.url_for_static_or_external(g.site_logo) }}" alt="{{ g.site_title }}" title="{{ g.site_title }}" /></a> <a class="logo" href="{{ h.url_for('home') }}"><img src="{{ h.url_for_static_or_external(g.site_logo) }}" alt="{{ g.site_title }}" title="{{ g.site_title }}" /></a>
{% else %} {% else %}
<h1> <h1>
<a href="{{ h.url('home') }}">{{ g.site_title }}</a> <a href="{{ h.url_for('home') }}">{{ g.site_title }}</a>
</h1> </h1>
{% if g.site_description %}<h2>{{ g.site_description }}</h2>{% endif %} {% if g.site_description %}<h2>{{ g.site_description }}</h2>{% endif %}
{% endif %} {% endif %}

View File

@ -22,7 +22,7 @@
{% block secondary_content %} {% block secondary_content %}
{% snippet 'snippets/organization.html', organization=c.group_dict, show_nums=true %} {% snippet 'snippets/organization.html', organization=c.group_dict, show_nums=true %}
{# ADDED BY FRANCESCO MANGIACRAPA SEE #12651 #} {# ADDED BY FRANCESCO MANGIACRAPA SEE #12651 #}
{% set alternative_url = h.url(controller='organization', action='read', id=c.group_dict.name) %} {% set alternative_url = h.url_for(controller='organization', action='read', id=c.group_dict.name) %}
{% snippet 'spatial/snippets/spatial_query.html', alternative_url=alternative_url %} {% snippet 'spatial/snippets/spatial_query.html', alternative_url=alternative_url %}
{# END #} {# END #}
{% block organization_facets %}{% endblock %} {% block organization_facets %}{% endblock %}

View File

@ -79,7 +79,7 @@ if(window.addEventListener){
<div class="module info alert alert-info"> <div class="module info alert alert-info">
<p class="module-content"> <p class="module-content">
{% set timestamp = h.render_datetime(c.revision_date, with_hours=True) %} {% set timestamp = h.render_datetime(c.revision_date, with_hours=True) %}
{% set url = h.url(controller='package', action='read', id=pkg.name) %} {% set url = h.url_for(controller='package', action='read', id=pkg.name) %}
{% trans timestamp=timestamp, url=url %}This is an old revision of this dataset, as edited at {{ timestamp }}. It may differ significantly from the <a href="{{ url }}">current revision</a>.{% endtrans %} {% trans timestamp=timestamp, url=url %}This is an old revision of this dataset, as edited at {{ timestamp }}. It may differ significantly from the <a href="{{ url }}">current revision</a>.{% endtrans %}
</p> </p>