Kanchan Chauhan | 239b351 | 2016-05-02 11:43:44 +0530 | [diff] [blame] | 1 | <div class="web-list-item transaction-list-item"> |
| 2 | <a href="/issues?name={{ doc.name }}"> |
Rushabh Mehta | a33d468 | 2015-06-01 17:15:42 +0530 | [diff] [blame] | 3 | <div class="row"> |
Kanchan Chauhan | b3573a8 | 2016-05-09 12:30:58 +0530 | [diff] [blame] | 4 | <div class="col-xs-3"> |
Rushabh Mehta | 8ffd483 | 2015-09-17 16:28:30 +0530 | [diff] [blame] | 5 | <span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}"> |
Rushabh Mehta | 156ce60 | 2015-09-11 18:49:59 +0530 | [diff] [blame] | 6 | {{ doc.name }}</span> |
Kanchan Chauhan | b3573a8 | 2016-05-09 12:30:58 +0530 | [diff] [blame] | 7 | </div> |
Shreya Shah | 83dfc0a | 2018-07-23 11:14:00 +0530 | [diff] [blame] | 8 | <div class="col-xs-5 items-preview ellipsis ellipsis-width"> |
| 9 | {{ doc.subject }}</div> |
| 10 | <div class="col-xs-2 text-muted"> |
| 11 | <span class="indicator |
| 12 | {% if doc.status == "Open" %} |
| 13 | {% if doc.priority == "Medium" %} |
| 14 | orange"> Medium |
| 15 | {% elif doc.priority == "Low" %} |
| 16 | yellow"> Low |
| 17 | {% else %} |
| 18 | red"> High |
| 19 | {% endif %} |
| 20 | {% elif doc.status == "Closed" %} |
| 21 | green"> Closed |
| 22 | {% else %} |
| 23 | darkgrey"> {{ doc.status }} |
| 24 | {% endif %} |
| 25 | </span> |
| 26 | </div> |
Kanchan Chauhan | b3573a8 | 2016-05-09 12:30:58 +0530 | [diff] [blame] | 27 | <div class="col-xs-3 text-right small text-muted"> |
Rushabh Mehta | 8ffd483 | 2015-09-17 16:28:30 +0530 | [diff] [blame] | 28 | {{ frappe.format_date(doc.modified) }} |
Rushabh Mehta | a33d468 | 2015-06-01 17:15:42 +0530 | [diff] [blame] | 29 | </div> |
| 30 | </div> |
Rushabh Mehta | 156ce60 | 2015-09-11 18:49:59 +0530 | [diff] [blame] | 31 | </a> |
Rushabh Mehta | a33d468 | 2015-06-01 17:15:42 +0530 | [diff] [blame] | 32 | </div> |
Shreya Shah | 83dfc0a | 2018-07-23 11:14:00 +0530 | [diff] [blame] | 33 | |