Advertisement
Guest User

Untitled

a guest
May 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <select name="payment_free_checkout_order_status_id" id="input-order-status" class="form-control">
  2. {% for order_status in order_statuses %}
  3. {% if order_status.order_status_id == payment_free_checkout_order_status_id %}
  4. <option value="{{ order_status.order_status_id }}" selected="selected">{{ order_status.name }}</option>
  5. {% else %}
  6. <option value="{{ order_status.order_status_id }}">{{ order_status.name }}</option>
  7. {% endif %}
  8. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement