下图是odoo二次开发中可以使用的全部图标
这些图标是在文件 addons | website | static | src | js | website.editor.js 中定义的
程序代码原文如下
// List of FontAwesome icons in 4.0.3, extracted from the cheatsheet.
// Each icon provides the unicode codepoint as ``text`` and the class
// name as ``id`` so the whole thing can be fed directly to select2
// without post-processing and do the right thing (except for the part
// where we still need to implement ``initSelection``)
// TODO: add id/name to the text in order to allow FAYT selection of icons?
icons: [
{"text": "uf000", "id": "fa-glass"},
{"text": "uf001", "id": "fa-music"},
{"text": "uf002", "id": "fa-search"},
{"text": "uf003", "id": "fa-envelope-o"},
{"text": "uf004", "id": "fa-heart"},
{"text": "uf005", "id": "fa-star"},
{"text": "uf006", "id": "fa-star-o"},
{"text": "uf007", "id": "fa-user"},
{"text": "uf008", "id": "fa-film"},
{"text": "uf009", "id": "fa-th-large"},
{"text": "uf00a", "id": "fa-th"},
{"text": "uf00b", "id": "fa-th-list"},
{"text": "uf00c", "id": "fa-check"},
{"text": "uf00d", "id": "fa-times"},
{"text": "uf00e", "id": "fa-search-plus"},
{"text": "uf010", "id": "fa-search-minus"},
{"text": "uf011", "id": "fa-power-off"},
{"text": "uf012", "id": "fa-signal"},
{"text": "uf013", "id": "fa-cog"},
{"text": "uf014", "id": "fa-trash-o"},
{"text": "uf015", "id": "fa-home"},
{"text": "uf016", "id": "fa-file-o"},
{"text": "uf017", "id": "fa-clock-o"},
{"text": "uf018", "id": "fa-road"},
{"text": "uf019", "id": "fa-download"},
{"text": "uf01a", "id": "fa-arrow-circle-o-down"},
{"text": "uf01b", "id": "fa-arrow-circle-o-up"},
{"text": "uf01c", "id": "fa-inbox"},
{"text": "uf01d", "id": "fa-play-circle-o"},
{"text": "uf01e", "id": "fa-repeat"},
{"text": "uf021", "id": "fa-refresh"},
{"text": "uf022", "id": "fa-list-alt"},
{"text": "uf023", "id": "fa-lock"},
{"text": "uf024", "id": "fa-flag"},
{"text": "uf025", "id": "fa-headphones"},
{"text": "uf026", "id": "fa-volume-off"},
{"text": "uf027", "id": "fa-volume-down"},
{"text": "uf028", "id": "fa-volume-up"},
{"text": "uf029", "id": "fa-qrcode"},
{"text": "uf02a", "id": "fa-barcode"},
{"text": "uf02b", "id": "fa-tag"},
{"text": "uf02c", "id": "fa-tags"},
{"text": "uf02d", "id": "fa-book"},
{"text": "uf02e", "id": "fa-bookmark"},
{"text": "uf02f", "id": "fa-print"},
{"text": "uf030", "id": "fa-camera"},
{"text": "uf031", "id": "fa-font"},
{"text": "uf032", "id": "fa-bold"},
{"text": "uf033", "id": "fa-italic"},
{"text": "uf034", "id": "fa-text-height"},
{"text": "uf035", "id": "fa-text-width"},
{"text": "uf036", "id": "fa-align-left"},
{"text": "uf037", "id": "fa-align-center"},
{"text": "uf038", "id": "fa-align-right"},
{"text": "uf039", "id": "fa-align-justify"},
{"text": "uf03a", "id": "fa-list"},
{"text": "uf03b", "id": "fa-outdent"},
{"text": "uf03c", "id": "fa-indent"},
{"text": "uf03d", "id": "fa-video-camera"},
{"text": "uf03e", "id": "fa-picture-o"},
{"text": "uf040", "id": "fa-pencil"},
{"text": "uf041", "id": "fa-map-marker"},
{"text": "uf042", "id": "fa-adjust"},
{"text": "uf043", "id": "fa-tint"},
{"text": "uf044", "id": "fa-pencil-square-o"},
{"text": "uf045", "id": "fa-share-square-o"},
{"text": "uf046", "id&#