Anand Doshi | e3bd78e | 2016-04-22 18:53:21 +0530 | [diff] [blame] | 1 | <div class="web-list-item transaction-list-item"> |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 2 | <div class="row"> |
| 3 | <div class="col-sm-4"> |
Suraj Shetty | b6ebcd7 | 2020-08-27 18:57:18 +0530 | [diff] [blame] | 4 | <span class="indicator small {{ doc.indicator_color or ("blue" if doc.docstatus==1 else "gray") }}"> |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 5 | {{ doc.name }}</span> |
| 6 | <div class="small text-muted transaction-time" |
| 7 | title="{{ frappe.utils.format_datetime(doc.modified, "medium") }}"> |
| 8 | {{ frappe.utils.global_date_format(doc.modified) }} |
Anand Doshi | e3bd78e | 2016-04-22 18:53:21 +0530 | [diff] [blame] | 9 | </div> |
Anand Doshi | e3bd78e | 2016-04-22 18:53:21 +0530 | [diff] [blame] | 10 | </div> |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 11 | <div class="col-sm-5"> |
| 12 | <div class="small text-muted items-preview ellipsis ellipsis-width"> |
| 13 | {{ doc.items_preview }} |
| 14 | </div> |
| 15 | </div> |
Rohit Waghchaure | 8c844e4 | 2021-06-11 17:27:08 +0530 | [diff] [blame] | 16 | {% if doc.get('grand_total') %} |
| 17 | <div class="col-sm-3 text-right bold"> |
| 18 | {{ doc.get_formatted("grand_total") }} |
| 19 | </div> |
| 20 | {% endif %} |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 21 | </div> |
| 22 | <a class="transaction-item-link" href="/{{ pathname }}/{{ doc.name }}">Link</a> |
Rushabh Mehta | a33d468 | 2015-06-01 17:15:42 +0530 | [diff] [blame] | 23 | </div> |