* 系统的小图标都采用了 fontawesome
官网是 http://fontawesome.dashgame.com/
* 运用小图标
# 首先打开官网 http://fontawesome.dashgame.com/
找到喜欢的小图标 ,举例 看到一个漏斗图标,在旁边看到
英文名 filter
# 写到视图文件的元素中,用icon
如:
<button string="Products"
class="oe_stat_button"
icon="fa-filter" name="%(act_product_location_open)d" type="action"
context="{'location_id': active_id}"
/>
有英文名前名加fa ,最终是icon="fa-filter"
* 加强用法
# 默认我们加的是标准小图标,若要其它大的,或特效参看
官网 http://fontawesome.dashgame.com/
写得特别的详细