You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 regels
405 B

  1. {% from "erpnext/templates/includes/order/order_macros.html" import item_name_and_description_cart %}
  2. {% for d in doc.items %}
  3. <div class="row cart-dropdown">
  4. <div class="col-sm-8 col-xs-8 col-name-description">
  5. {{ item_name_and_description_cart(d) }}
  6. </div>
  7. <div class="col-sm-4 col-xs-4 text-right col-amount">
  8. {{ d.get_formatted("amount") }}
  9. </div>
  10. </div>
  11. {% endfor %}