UI: Training templates fluid video layouts #104435

Merged
Márton Lente merged 13 commits from ui/training-layout-fluid into main 2024-08-23 16:50:27 +02:00
Showing only changes of commit 4ed127df4a - Show all commits

View File

@ -53,48 +53,44 @@
<div class="training-group-item training-group-item-content"> <div class="training-group-item training-group-item-content">
<div class="box"> <div class="box">
<div class="row"> <div class="row">
<div class="col"> <div class="col mb-2 mb-md-3">
<div class="row"> <div class="d-md-block d-none">
<div class="col mb-2 mb-md-3"> <p class="small text-muted">{{ chapter.name }}</p>
<div class="d-md-block d-none"> <h2>{{ section.name }}</h2>
<p class="small text-muted">{{ chapter.name }}</p>
<h2>{{ section.name }}</h2>
</div>
<div class="text-muted x-sm">
<p class="d-inline me-2">{{ section.date_created|date:"N jS, Y" }}</p>
{% if section.static_asset.license %}
<a href="{{ section.static_asset.license.url }}" target="_blank" class="d-inline me-2 text-muted" data-bs-toggle="tooltip" data-placement="bottom" title="{{ section.static_asset.license.description }}">
<i class="i-info"></i>
{{ section.static_asset.license }}
</a>
{% endif %}
{% if section.is_free %}
{% include "common/components/cards/pill.html" with label='Free' %}
{% endif %}
</div>
</div>
<div class="col-12 col-md-auto mb-2 mb-md-0 mt-0 mt-md-3">
{% include "common/components/navigation/buttons_toolbar.html" with item=section %}
</div>
</div> </div>
<div class="row mb-2"> <div class="text-muted x-sm">
{% if section.static_asset.author_image_url %} <p class="d-inline me-2">{{ section.date_created|date:"N jS, Y" }}</p>
<div style="background-image:url('{{ section.static_asset.author_image_url }}');" class="ms-2 profile-avatar"></div> {% if section.static_asset.license %}
{% else %} <a href="{{ section.static_asset.license.url }}" target="_blank" class="d-inline me-2 text-muted" data-bs-toggle="tooltip" data-placement="bottom" title="{{ section.static_asset.license.description }}">
<div style="background-image:url('{% static 'common/images/blank-profile-pic.png' %}');" class="ms-2 profile-avatar"> <i class="i-info"></i>
</div> {{ section.static_asset.license }}
</a>
{% endif %}
{% if section.is_free %}
{% include "common/components/cards/pill.html" with label='Free' %}
{% endif %} {% endif %}
{% include 'common/components/cards/card_profile.html' with user=section.static_asset.user title="Publisher" %}
</div> </div>
<section class="mb-3 markdown-text"> </div>
{% with_shortcodes section.text|markdown_unsafe %} <div class="col-12 col-md-auto mb-2 mb-md-0 mt-0 mt-md-3">
</section> {% include "common/components/navigation/buttons_toolbar.html" with item=section %}
<section class="mb-3">
{% include 'comments/components/comment_section.html' %}
</section>
</div> </div>
</div> </div>
<div class="row mb-2">
{% if section.static_asset.author_image_url %}
<div style="background-image:url('{{ section.static_asset.author_image_url }}');" class="ms-2 profile-avatar"></div>
{% else %}
<div style="background-image:url('{% static 'common/images/blank-profile-pic.png' %}');" class="ms-2 profile-avatar">
</div>
{% endif %}
{% include 'common/components/cards/card_profile.html' with user=section.static_asset.user title="Publisher" %}
</div>
<section class="mb-3 markdown-text">
{% with_shortcodes section.text|markdown_unsafe %}
</section>
<section>
{% include 'comments/components/comment_section.html' %}
</section>
</div> </div>
</div> </div>
{% endblock nexted_content %} {% endblock nexted_content %}