mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-24 19:32:53 +03:00
17 lines
613 B
HTML
17 lines
613 B
HTML
{% with widget_id=widget.attrs.id %}
|
|
<div class="localized-fields-widget" role="tabs" data-synctabs="translation">
|
|
<ul class="localized-fields-widget tabs">
|
|
{% for widget in widget.subwidgets %}
|
|
<li class="localized-fields-widget tab">
|
|
<label for="{{ widget_id }}_{{ widget.lang_code }}">{{ widget.lang_name|capfirst }}</label>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% for widget in widget.subwidgets %}
|
|
<div role="tabpanel" id="{{ widget_id }}_{{ widget.lang_code }}">
|
|
{% include widget.template_name %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endwith %}
|