openclassify/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/content.twig
2020-09-22 10:28:32 +03:00

49 lines
2.2 KiB
Twig

<div class="description-info">
<div class="row">
<div class="col-md-12">
<nav>
<div class="nav nav-tabs nav-fill ad-detail-tabs" id="nav-tab" role="tablist">
<a class="nav-item nav-link active bg-secondary text-white" id="nav-description-tab"
data-toggle="tab" href="#nav-description" role="tab"
aria-controls="nav-description"
aria-selected="true">{{ trans('visiosoft.module.advs::field.description') }}</a>
<a class="nav-item nav-link bg-secondary text-white" id="nav-location-tab"
data-toggle="tab" href="#nav-location" role="tab"
aria-controls="nav-location"
aria-selected="true">{{ trans('visiosoft.module.location::addon.title') }}</a>
<!-- Content Tab With Block -->
{{ addBlock('ad-detail/content-tab',{'features':features})|raw }}
<!-- Content Tab With Block -->
</div>
</nav>
<div class="tab-content py-3 px-3 px-sm-0" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-description" role="tabpanel"
aria-labelledby="nav-description-tab">
<h4>{{ trans('visiosoft.module.advs::field.description') }}</h4>
<p>{{ adv.advs_desc|raw }}</p>
</div>
<div class="tab-pane fade show " id="nav-location" role="tabpanel"
aria-labelledby="nav-description-tab">
<h4>{{ trans('visiosoft.module.location::addon.title') }}</h4>
{% include "visiosoft.module.advs::ad-detail/partials/map" %}
</div>
<!-- Content With Block -->
<div id="nav-comments" class="tab-pane fade in">
{{ addBlock('ad-detail/content',{'features':features,'entry':adv, 'profile': profile, 'commenturl': 'advs::saveComment', 'entry_type': 'Visiosoft\\AdvsModule\\Adv\\AdvModel'})|raw }}
</div>
<!-- Content With Block -->
</div>
</div>
</div>
</div>
{{ addBlock('ad-detail/section',{'adv':adv})|raw }}