brotherton-erpnext/erpnext/utilities/page/leaderboard/leaderboard.html
Ayush Shukla a111f78566 Leaderboard of customers, items, suppliers and sales partner (#9354)
* First commit leaderboard working

* Styling and added href

* Changed timeline string

* Changes in item

* Cleanup

* Fix

* made changes to currency column

* Code cleanup for codacy

* Sorting bug fixed and formatting done

* Changed type to isinstance
2017-06-20 13:04:45 +05:30

23 lines
624 B
HTML

<div class="frappe-list-area">
<div class="frappe-list">
<div class="list-filters">
<div class="list-filter-item">
<select class="form-control select-doctype">
{% for (var i=0; i < doctypes.length; i++) { %}
<option value="{{doctypes[i]}}">{{ doctypes[i] }}</option>
{% } %}
</select>
</div>
<div class="list-filter-item">
<select class="form-control select-time">
{% for (var i=0; i < timelines.length; i++) { %}
<option value="{{timelines[i]}}">{{ timelines[i] }}</option>
{% } %}
</select>
</div>
</div>
<div class="leaderboard">
</div>
</div>
</div>