0.0.1 new functional twb
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
{% include "inter/meta_OpenGraph_Schema.html" %}
|
||||
|
||||
|
||||
<script src="{% static "v2/js/service/api.js" %}"></script>
|
||||
|
||||
<!-- Event snippet for Sign-up conversion page
|
||||
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
|
||||
|
||||
10
templates/v2/blocks/b_make_poster_order.html
Normal file
10
templates/v2/blocks/b_make_poster_order.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
<link rel="stylesheet" href="{% static "v2/css/forms.css" %}">
|
||||
<link rel="stylesheet" href="{% static "v2/css/widgets/w_select_country.css" %}">
|
||||
<link rel="stylesheet" href="{% static "v2/css/blocks/b_make_poster_order.css" %}">
|
||||
|
||||
<div class="b_make_poster_order">
|
||||
<div class="make_poster_order_title">{% trans "Заполните форму, чтобы отправить посылку" %}</div>
|
||||
{% include 'v2/forms/f_make_poster_order.html' %}
|
||||
</div>
|
||||
13
templates/v2/forms/f_make_poster_order.html
Normal file
13
templates/v2/forms/f_make_poster_order.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<form name="make_poster_order" class="f_make_poster_order">
|
||||
{% trans "Укажите город" as placeholder_for_city %}
|
||||
|
||||
<div class="form_line _50_grid">
|
||||
<div class="field_container">
|
||||
<label for="id_from_city"><div class="required_field_icon">*</div> {% trans "Откуда забрать посылку" %}</label>
|
||||
{% include 'v2/widgets/w_select_country.html' with name='from_city' placeholder=placeholder_for_city %}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
17
templates/v2/widgets/w_select_country.html
Normal file
17
templates/v2/widgets/w_select_country.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<div class="w_select_country">
|
||||
<div class="w_select_country_header">
|
||||
<div class="select_country_header_left_part">
|
||||
<div class="container_inf_about_country">
|
||||
<img class="country_flag_img_container">
|
||||
<div class="country_code"></div>
|
||||
</div>
|
||||
<input type="text" name="{{ name }}" id="id_{{ name }}" placeholder="{{ placeholder }}" data-value="" data-id="">
|
||||
</div>
|
||||
<img class="w_select_country_icon" src="{% static "v2/icons/widgets/w_select_country/pin.svg" %}" alt="">
|
||||
</div>
|
||||
<div class="w_select_country_content">
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user