Browse Source

added some missing font awesome icons

Skylsmoi 6 years ago
parent
commit
1f34921c49
2 changed files with 4 additions and 4 deletions
  1. 2 2
      tracim/models/applications.py
  2. 2 2
      tracim/models/workspace_menu_entries.py

+ 2 - 2
tracim/models/applications.py View File

@@ -41,7 +41,7 @@ class Application(object):
41 41
 calendar = Application(
42 42
     label='Calendar',
43 43
     slug='calendar',
44
-    fa_icon='calendar-alt',
44
+    fa_icon='calendar',
45 45
     hexcolor='#757575',
46 46
     is_active=True,
47 47
     config={},
@@ -72,7 +72,7 @@ _file = Application(
72 72
 markdownpluspage = Application(
73 73
     label='Markdown Plus Documents',  # TODO - G.M - 24-05-2018 - Check label
74 74
     slug='contents/markdownpluspage',
75
-    fa_icon='file-code',
75
+    fa_icon='file-code-o',
76 76
     hexcolor='#f12d2d',
77 77
     is_active=True,
78 78
     config={},

+ 2 - 2
tracim/models/workspace_menu_entries.py View File

@@ -29,14 +29,14 @@ dashboard_menu_entry = WorkspaceMenuEntry(
29 29
   label='Dashboard',
30 30
   route='/#/workspaces/{workspace_id}/dashboard',
31 31
   hexcolor='#252525',
32
-  fa_icon="",
32
+  fa_icon="signal",
33 33
 )
34 34
 all_content_menu_entry = WorkspaceMenuEntry(
35 35
   slug="contents/all",
36 36
   label="All Contents",
37 37
   route="/#/workspaces/{workspace_id}/contents",
38 38
   hexcolor="#fdfdfd",
39
-  fa_icon="",
39
+  fa_icon="th",
40 40
 )
41 41
 
42 42
 # TODO - G.M - 08-06-2018 - This is hardcoded default menu entry,