Removing Partial TemplateTag

This commit is contained in:
Leonhard Strohmidel 2022-09-17 21:22:51 +02:00
parent 72094494eb
commit 9c50e5891f
4 changed files with 10 additions and 25 deletions

View File

@ -89,7 +89,7 @@
</div> </div>
{% block footer %} {% block footer %}
{% partial 'nav/footer' %} {% include 'partials/nav/footer.html' %}
{% endblock footer %} {% endblock footer %}
</body> </body>

View File

@ -12,13 +12,10 @@
{% block maincontent %} {% block maincontent %}
{% partial 'welcome' %} {% include 'partials/welcome.html' %}
<article class="LP-TextSection"> <article class="LP-TextSection">
</article> </article>
{% partial 'osm_map' %} {% include 'partials/osm_map.html' with config=mapping_config modifier='wide' %}
{% set config mapping_config %}
{% set modifier 'wide' %}
{% endpartial %}
<div class="LP-PlaceGrid"> <div class="LP-PlaceGrid">
<h1 class="LP-Headline LP-Headline">{% translate 'Explore the latest places' %}</h1> <h1 class="LP-Headline LP-Headline">{% translate 'Explore the latest places' %}</h1>
<ul class="LP-PlaceGrid__Grid"> <ul class="LP-PlaceGrid__Grid">

View File

@ -6,7 +6,7 @@
{% block maincontent %} {% block maincontent %}
{% partial 'welcome' %} {% include 'partials/welcome.html' %}
<article class="LP-TextSection"> <article class="LP-TextSection">
<p class="LP-Paragraph"> <p class="LP-Paragraph">
{% blocktranslate %}You can create, view and share your lost places with other members of this site. You can upload photos, place links to your web galleries and contribute your knowledge by tagging other places or commenting on them. You will find detailed information on where these locations are, how to get there and what to expect from them. This might even include detailed information on the surroundings or the history of a lost place.{% endblocktranslate %} {% blocktranslate %}You can create, view and share your lost places with other members of this site. You can upload photos, place links to your web galleries and contribute your knowledge by tagging other places or commenting on them. You will find detailed information on where these locations are, how to get there and what to expect from them. This might even include detailed information on the surroundings or the history of a lost place.{% endblocktranslate %}
@ -25,9 +25,7 @@
<a href="{% url 'place_detail' pk=place.pk %}" class="LP-Link"> <a href="{% url 'place_detail' pk=place.pk %}" class="LP-Link">
<article class="LP-PlaceTeaser"> <article class="LP-PlaceTeaser">
<div class="LP-PlaceTeaser__Image"> <div class="LP-PlaceTeaser__Image">
{% partial 'image' %} {% include 'partials/image.html' with source_url=place.placeimages.first.filename.thumbnail.url %}
{% set source_url place.placeimages.first.filename.thumbnail.url %}
{% endpartial %}
</div> </div>
<div class="LP-PlaceTeaser__Meta"> <div class="LP-PlaceTeaser__Meta">
<div class="LP-PlaceTeaser__Info"> <div class="LP-PlaceTeaser__Info">

View File

@ -26,12 +26,7 @@
<h1 class="LP-Headline">{{ place.name }} {% include 'partials/icons/place_favorite.html' %} {% include 'partials/icons/place_visited.html' %}</h1> <h1 class="LP-Headline">{{ place.name }} {% include 'partials/icons/place_favorite.html' %} {% include 'partials/icons/place_visited.html' %}</h1>
{% if place.get_hero_image %} {% if place.get_hero_image %}
<div class="LP-PlaceDetail__Image"> <div class="LP-PlaceDetail__Image">
{% partial image %} {% include '../partials/image.html' with source_url=place.get_hero_image.filename.hero.url link_url="#image"|addstr:place.get_hero_index_in_queryset %}
{% set source_url place.get_hero_image.filename.hero.url %}
{% set link_url %}
{{"#image"|addstr:place.get_hero_index_in_queryset}}
{% endset %}
{% endpartial %}
</div> </div>
{% endif %} {% endif %}
</header> </header>
@ -43,23 +38,18 @@
<div class="LP-Quickinfo"> <div class="LP-Quickinfo">
<section class="LP-Section"> <section class="LP-Section">
{% url 'place_tag_submit' place_id=place.id as tag_submit_url %} {% url 'place_tag_submit' place_id=place.id as tag_submit_url %}
{% partial tagging %} {% include '../partials/tagging.html' with config=tagging_config %}
{% set config=tagging_config %}
{% endpartial %}
</section> </section>
{{votingplace.vote}} {{votingplace.vote}}
<section class="LP-Section"> <section class="LP-Section">
{% partial voting %} {% include '../partials/voting.html' with voting=placevoting %}
{% set place=place %}
{% set voting=placevoting %}
{% endpartial %}
</section> </section>
</div> </div>
<section class="LP-Section"> <section class="LP-Section">
<h1 class="LP-Headline">{% translate 'Map links' %}</h1> <h1 class="LP-Headline">{% translate 'Map links' %}</h1>
{% partial osm_map config=mapping_config %} {% include '../partials/osm_map.html' with config=mapping_config %}
<ul class="LP-LinkList"> <ul class="LP-LinkList">
<li class="LP-LinkList__Item"> <li class="LP-LinkList__Item">
<a target="_blank" href="https://www.google.com/maps?q={{place.latitude|safe}},{{place.longitude|safe}}" class="LP-Link"> <a target="_blank" href="https://www.google.com/maps?q={{place.latitude|safe}},{{place.longitude|safe}}" class="LP-Link">
@ -137,7 +127,7 @@
<section class="LP-Section"> <section class="LP-Section">
{% translate 'Images' as headline %} {% translate 'Images' as headline %}
{% partial "placeImageGrid" image_list=place.placeimages.all %} {% include '../partials/placeImageGrid.html' with image_list=place.placeimages.all %}
</section> </section>
</article> </article>