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.
 
 
 
 

26 line
962 B

  1. <div class="web-list-item transaction-list-item">
  2. <div class="row align-items-center">
  3. <div class="col-sm-4">
  4. <span class="list-item-name font-weight-bold">{{ doc.name }}</span>
  5. <div class="small text-muted transaction-time"
  6. title="{{ frappe.utils.format_datetime(doc.modified, "medium") }}">
  7. {{ frappe.utils.global_date_format(doc.modified) }}
  8. </div>
  9. </div>
  10. <div class="col-sm-3">
  11. <span class="indicator-pill {{ doc.indicator_color or ("blue" if doc.docstatus==1 else "gray") }} list-item-status">{{doc.status}}</span>
  12. </div>
  13. <div class="col-sm-2">
  14. <div class="small text-muted items-preview ellipsis ellipsis-width">
  15. {{ doc.items_preview }}
  16. </div>
  17. </div>
  18. {% if doc.get('grand_total') %}
  19. <div class="col-sm-3 text-right font-weight-bold item-total">
  20. {{ doc.get_formatted("grand_total") }}
  21. </div>
  22. {% endif %}
  23. </div>
  24. <a class="transaction-item-link" href="/{{ pathname }}/{{ doc.name }}">Link</a>
  25. </div>