trip-details

back

This page shows the details of a selected Trip.

JCI-Template:

  • Name: facet-search-detail-page
  • URL: https://api.json-content-importer.com/extra/json/travel.json
  • urlparam4twig: refnum
  • twig-template:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
{% for r in Offers %}
{% if r.Refnum==urlparam.refnum %}
<h1>Hotel: {{r.Hotelname}}</h1>
{{r.Arraptname}}<br>
{{r.Outbounddep}}-{{r.Inboundarr}}<br>
<h3>{{r.Sellprice}} Euro</h3>
{% endif %}
{% endfor %}
<a href="javascript:history.back()">back</a>
{% for r in Offers %} {% if r.Refnum==urlparam.refnum %} <h1>Hotel: {{r.Hotelname}}</h1> {{r.Arraptname}}<br> {{r.Outbounddep}}-{{r.Inboundarr}}<br> <h3>{{r.Sellprice}} Euro</h3> {% endif %} {% endfor %} <a href="javascript:history.back()">back</a>
{% for r in Offers %} 
{% if r.Refnum==urlparam.refnum %}
<h1>Hotel: {{r.Hotelname}}</h1>
{{r.Arraptname}}<br>
{{r.Outbounddep}}-{{r.Inboundarr}}<br>

<h3>{{r.Sellprice}} Euro</h3>
{% endif %}
{% endfor %}
<a href="javascript:history.back()">back</a>