Browse Source

Obsole fixture removed.

Ralfp 12 years ago
parent
commit
6907ad499f
1 changed files with 0 additions and 41 deletions
  1. 0 41
      misago/admin/fixtures.py

+ 0 - 41
misago/admin/fixtures.py

@@ -1,41 +0,0 @@
-import base64
-from misago.admin.models import Section, Action
-from misago.utils import ugettext_lazy as _
-from misago.utils import get_msgid
-
-admin_fixtures = {
-    # Overview
-    'overview': {
-        'name': _('Overview'),
-        'icon': 'signal',
-        'pos': 0,
-    },
-
-    # Users
-    'users': {
-        'name': _('Users'),
-        'icon': 'user',
-        'pos': 100,
-    },
-
-    # Forums
-    'forums': {
-        'name': _('Forums'),
-        'icon': 'comment',
-        'pos': 200,
-    },
-
-    # Permissions
-    'permissions': {
-        'name': _('Permissions'),
-        'icon': 'adjust',
-        'pos': 300,
-    },
-
-    # System
-    'system': {
-        'name': _('System'),
-        'icon': 'wrench',
-        'pos': 400,
-    },
-}