From 47a5f0cf3d19ae2668d6ef084b0af357922d66f2 Mon Sep 17 00:00:00 2001
From: Prashant Kanse
- {% trans %}
- Your request for the following resource could not be resolved:
- {{ resources | safe_join(', ') }}
- {% plural resources|length %}
- Your request for the following resources could not be resolved:
- {{ resources | safe_join(', ') }}
- {% endtrans %}
+ {% if resources is not null and resources is iterable %}
+ {% set resource_list = resources|join(', ') %}
+ {% if resource_list|length == 0 %}
+ {# No resources available #}
+ {% elseif resource_list|length == 1 %}
+ {% trans %}
+ Your request for the following resource could not be resolved:
+ {{ resource_list }}
+ {% endtrans %}
+ {% else %}
+ {% trans %}
+ Your request for the following resources could not be resolved:
+ {{ resource_list }}
+ {% endtrans %}
+ {% endif %}
+ {% endif %}
{{ 'Access to this resource is restricted to the following networks:'|t }}
{% for item in ranges %}
@@ -29,11 +39,11 @@
- {% trans %} - If you have any questions regarding access to this resource, contact - {{ contact_email }} for more - information. - {% endtrans %} -
++ {% trans %} + If you have any questions regarding access to this resource, contact + {{ contact_email }} for more + information. + {% endtrans %} +
{% endif %}