0.0.08 form poster

This commit is contained in:
SBD
2025-01-10 22:13:59 +03:00
parent 4c96c94549
commit 8f43ede3f0
12 changed files with 45 additions and 12 deletions

View File

@@ -2,6 +2,6 @@
{% load i18n %}
<div class="cw_w_radio_inputs_radio_input" data-name="{{ item.0 }}">
<div class="radio" onclick="chooseRadioInput(this)"></div>
<div class="radio{% if item.0 == initial %} checked{% endif %}" onclick="chooseRadioInput(this)"></div>
<div class="radio_label" onclick="chooseRadioInput(this)">{{ item.1 }}</div>
</div>

View File

@@ -1,10 +1,10 @@
{% load static %}
{% load i18n %}
<div class="cw_w_select_widget_for_select" data-id="{{ id }}" data-name="{{ country__name }}/{{ name }}" data-country_code="{{ country__short_code }}" data-flag="{{ MEDIA_URL }}{{ country__flag }}" onclick="selectCountry(this)">
<div class="cw_w_select_widget_for_select" data-id="{{ id }}" data-name="{{ name }}/{{ country__name }}" data-country_code="{{ country__short_code }}" data-flag="{{ MEDIA_URL }}{{ country__flag }}" onclick="selectCountry(this)">
<div class="cw_country_inf_part">
<img src="{{ MEDIA_URL }}{{ country__flag }}" alt="">
<div class="cw_country_code">{{ country__short_code }}</div>
</div>
<div class="cw_name_country">{{ country__name }}/{{ name }}</div>
<div class="cw_name_country">{{ name }}/{{ country__name }}</div>
</div>