Resolve "Move payment status icon to Invoice method"
1 unresolved thread
1 unresolved thread
Closes #9 (closed)
Edited by Nik | Klampfradler
Merge request reports
Activity
mentioned in commit 6fa1899b
72 72 </tr> 73 73 <tr> 74 74 <td> 75 {% if object.status == "waiting" or object.status == "input" %} 76 <i class="material-icons iconify" data-icon="mdi:cash-lock-open"></i> 77 {% elif object.status == "rejected" or object.status == "error" %} 78 <i class="material-icons iconify" data-icon="mdi:cash-remove"></i> 79 {% elif object.status == "preauth" %} 80 <i class="material-icons iconify" data-icon="mdi:cash-lock"></i> 81 {% elif object.status == "confirmed" %} 82 <i class="material-icons iconify" data-icon="mdi:cash-check"></i> 83 {% elif object.status == "refunded" %} 84 <i class="material-icons iconify" data-icon="mdi:cash-refund"></i> 85 {% endif %} 75 <i class="material-icons iconify" data-icon="object.get_status_icon"></i>
Please register or sign in to reply