5f8b358fd4
- Refactored Homepage with customisable Hero Section - New Homepage Section to add content on Homepage as cards or using Custom HTML - Products page at "/all-products" with customisable filters - Item Configure dialog to find an Item Variant filtered by attribute values - Contact Us dialog on Item page - Customisable Item page content using the Website Content field
15 lines
653 B
HTML
15 lines
653 B
HTML
<div class="web-list-item mb-3">
|
|
<a href="/addresses?name={{ doc.name | urlencode }}" class="no-underline text-reset">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
<span class="indicator {{ "red" if doc.address_type=="Office" else "green" if doc.address_type=="Billing" else "blue" if doc.address_type=="Shipping" else "darkgrey" }}">{{ doc.address_title }}</span>
|
|
</div>
|
|
<div class="col-2"> {{ _(doc.address_type) }} </div>
|
|
<div class="col-2"> {{ doc.city }} </div>
|
|
<div class="col-5 text-right small text-muted">
|
|
{{ frappe.get_doc(doc).get_display() }}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|