82 lines
No EOL
3.1 KiB
HTML
82 lines
No EOL
3.1 KiB
HTML
{% extends "frontend/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load bootstrap4 %}
|
|
{% block "styles" %}
|
|
<link rel="stylesheet" href="{% static "frontend/css/inspirations.css" %}">
|
|
{% endblock %}
|
|
{% block "content" %}
|
|
<!--===== INNERPAGE-WRAPPER ====-->
|
|
<section class="innerpage-wrapper">
|
|
<div id="payment-success" class="section-padding">
|
|
<div class="container text-center">
|
|
<div class="row d-flex justify-content-center">
|
|
<div class="col-md-12 col-lg-8 col-lg-offset-2">
|
|
<h2>{% trans "Inspirationen" %}</h2>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="row d-flex justify-content-center">
|
|
<div class="col-md-6">
|
|
<select id="country" class="form-control">
|
|
<optgroup id="countrygroup" label="{% trans "Staat" %}">
|
|
</optgroup>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<select id="region" class="form-control">
|
|
<optgroup id="stategroup" label="{% trans "Land" %}">
|
|
</optgroup>
|
|
<optgroup id="regiongroup" label="{% trans "Region" %}">
|
|
</optgroup>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="row d-flex justify-content-center">
|
|
<!--<div class="col-md-12 col-lg-8 col-lg-offset-2">-->
|
|
|
|
<div id="inspirations_container" class="container bootstrap snippets bootdey">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- </div> --><!-- end columns -->
|
|
</div><!-- end row -->
|
|
</div><!-- end container -->
|
|
</div><!-- end coming-soon-text -->
|
|
</section><!-- end innerpage-wrapper -->
|
|
{% endblock %}
|
|
{% block "modal" %}
|
|
<!-- Modal 1 --> <!-- TODO: You know... -->
|
|
<div
|
|
class="modal fade"
|
|
id="exampleModal1"
|
|
tabindex="-1"
|
|
aria-labelledby="exampleModal1Label"
|
|
aria-hidden="true"
|
|
>
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="ratio ratio-16x9">
|
|
<iframe
|
|
src="https://www.youtube.com/embed/A3PDXmYoF5U"
|
|
title="YouTube video"
|
|
allowfullscreen width="100%" height="100%"
|
|
></iframe>
|
|
</div>
|
|
|
|
<div class="text-center py-3">
|
|
<button type="button" class="btn btn-primary">
|
|
{% blocktrans %}Jetzt Urlaubsangebote in und um {{ inspiration.destination_name }} erhalten!{% endblocktrans %}
|
|
</button>
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">
|
|
{% trans "Schließen" %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block "scripts" %}
|
|
<script type="text/javascript" src="{% static "frontend/js/inspirations.js" %}"></script>
|
|
{% endblock %} |