Skip to content
Snippets Groups Projects
Verified Commit 7b18c4ba authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add icons to menu.

parent 3c771558
No related branches found
No related tags found
1 merge request!6Add ckeditor in FAQ questions admin interface
......@@ -5,6 +5,7 @@ MENUS = {
{
"name": _("Support"),
"url": "#",
"icon": "help-circle",
"root": True,
"validators": [
"menu_generator.validators.is_authenticated",
......@@ -14,16 +15,19 @@ MENUS = {
{
"name": _("Report a Bug"),
"url": "rebus",
"icon": "bug",
"validators": ["menu_generator.validators.is_authenticated"],
},
{
"name": _("Feedback"),
"url": "feedback",
"icon": "message-alert",
"validators": ["menu_generator.validators.is_authenticated"],
},
{
"name": _("FAQ"),
"url": "faq",
"icon": "frequently-asked-questions",
"validators": ["menu_generator.validators.is_superuser"],
},
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment