как отправить значения всплывающих модальных форм в сеанс без проверки других полей / форм?
страница с несколькими формами:
{% bootstrap_field bi.climatic_conditions class = "mdb-select" layout = 'outline' size = 'sm'%} Добавить собственные погодные условия Нажмите меня *
<div class="modal fade" id="costomWC" tabindex="-1"
role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header text-center">
<h4>Custom Weather Conditions</h4>
<button type="button" class="close" data-dismiss="modal"> ×</button>
</div>
<div class="modal-body">
{% include 'calculator/custom_weather.html' %}
</div>
<div class="modal-footer">
<a href="{% url 'custom_weather' %}">
<button type='button'>TEST</button>
</a>
</div>
</div>
</div>
</div>