Fibinger Ádám
2019-10-16 268b326d5a7d228ac991f15086b804db808535bf
templates/admin/form.twig
@@ -12,7 +12,7 @@
            </div>
            <div class="col-md-2 mb-3">
               <label for="validationServer02">Kupa sorszám</label>
               <input type="text" class="form-control" id="validationServer02" placeholder="Pld.: #654"
               <input type="text" name="stripe[cup][number]" class="form-control" id="validationServer02" placeholder="Pld.: #654"
                     value="{{ stripe.cup.number }}" required>
               <div class="valid-feedback">
                  Looks good!
@@ -31,10 +31,10 @@
               </div>
               <div class="col-md-12 mb-4">
                  <label for="op-blue" class="bg-primary">Banolt operátorok</label>
                  <select name="stripe[team][blue][ban]" class="operators" id="op-blue" style="width: 100%"
                  <select name="stripe[team][blue][ban][]" class="operators" id="op-blue" style="width: 100%"
                        multiple>
                     {% for operator in operators %}
                        <option value="{{ operator }}">{{ operator|capitalize }}</option>
                        <option value="{{ operator }}" {{ operator in stripe.team.blue.ban ? "selected"}}>{{ operator|capitalize }}</option>
                     {% endfor %}
                  </select>
               </div>
@@ -50,10 +50,10 @@
               </div>
               <div class="col-md-12 mb-4">
                  <label for="op-orange" class="bg-warning">Banolt operátorok</label>
                  <select name="stripe[team][blue][ban]" class="operators" id="op-orange" style="width: 100%"
                  <select name="stripe[team][orange][ban][]" class="operators" id="op-orange" style="width: 100%"
                        multiple>
                     {% for operator in operators %}
                        <option value="{{ operator }}">{{ operator|capitalize }}</option>
                        <option value="{{ operator }}" {{ operator in stripe.team.orange.ban ? "selected"}}>{{ operator|capitalize }}</option>
                     {% endfor %}
                  </select>
               </div>