Show More
@@ -1,44 +1,43 b'' | |||||
1 | {% extends "boards/base.html" %} |
|
1 | {% extends "boards/base.html" %} | |
2 |
|
2 | |||
3 | {% load i18n %} |
|
3 | {% load i18n %} | |
4 | {% load humanize %} |
|
|||
5 | {% load tz %} |
|
4 | {% load tz %} | |
6 |
|
5 | |||
7 | {% block head %} |
|
6 | {% block head %} | |
8 | <meta name="robots" content="noindex"> |
|
7 | <meta name="robots" content="noindex"> | |
9 | <title>{% trans 'Settings' %} - {{ site_name }}</title> |
|
8 | <title>{% trans 'Settings' %} - {{ site_name }}</title> | |
10 | {% endblock %} |
|
9 | {% endblock %} | |
11 |
|
10 | |||
12 | {% block content %} |
|
11 | {% block content %} | |
13 |
|
12 | |||
14 | <div class="post"> |
|
13 | <div class="post"> | |
15 | <p> |
|
14 | <p> | |
16 | {% if moderator %} |
|
15 | {% if moderator %} | |
17 | {% trans 'You are moderator.' %} |
|
16 | {% trans 'You are moderator.' %} | |
18 | {% endif %} |
|
17 | {% endif %} | |
19 | </p> |
|
18 | </p> | |
20 | {% if hidden_tags %} |
|
19 | {% if hidden_tags %} | |
21 | <p>{% trans 'Hidden tags:' %} |
|
20 | <p>{% trans 'Hidden tags:' %} | |
22 | {% for tag in hidden_tags %} |
|
21 | {% for tag in hidden_tags %} | |
23 | {% autoescape off %} |
|
22 | {% autoescape off %} | |
24 | {{ tag.get_view }} |
|
23 | {{ tag.get_view }} | |
25 | {% endautoescape %} |
|
24 | {% endautoescape %} | |
26 | {% endfor %} |
|
25 | {% endfor %} | |
27 | </p> |
|
26 | </p> | |
28 | {% else %} |
|
27 | {% else %} | |
29 | <p>{% trans 'No hidden tags.' %}</p> |
|
28 | <p>{% trans 'No hidden tags.' %}</p> | |
30 | {% endif %} |
|
29 | {% endif %} | |
31 | </div> |
|
30 | </div> | |
32 |
|
31 | |||
33 | <div class="post-form-w"> |
|
32 | <div class="post-form-w"> | |
34 | <div class="post-form"> |
|
33 | <div class="post-form"> | |
35 | <form method="post">{% csrf_token %} |
|
34 | <form method="post">{% csrf_token %} | |
36 | {{ form.as_div }} |
|
35 | {{ form.as_div }} | |
37 | <div class="form-submit"> |
|
36 | <div class="form-submit"> | |
38 | <input type="submit" value="{% trans "Save" %}" /> |
|
37 | <input type="submit" value="{% trans "Save" %}" /> | |
39 | </div> |
|
38 | </div> | |
40 | </form> |
|
39 | </form> | |
41 | </div> |
|
40 | </div> | |
42 | </div> |
|
41 | </div> | |
43 |
|
42 | |||
44 | {% endblock %} |
|
43 | {% endblock %} |
@@ -1,240 +1,240 b'' | |||||
1 | # Django settings for neboard project. |
|
1 | # Django settings for neboard project. | |
2 | import os |
|
2 | import os | |
3 |
|
3 | |||
4 | DEBUG = True |
|
4 | DEBUG = True | |
5 | TEMPLATE_DEBUG = DEBUG |
|
5 | TEMPLATE_DEBUG = DEBUG | |
6 |
|
6 | |||
7 | ADMINS = ( |
|
7 | ADMINS = ( | |
8 | # ('Your Name', 'your_email@example.com'), |
|
8 | # ('Your Name', 'your_email@example.com'), | |
9 | ('admin', 'admin@example.com') |
|
9 | ('admin', 'admin@example.com') | |
10 | ) |
|
10 | ) | |
11 |
|
11 | |||
12 | MANAGERS = ADMINS |
|
12 | MANAGERS = ADMINS | |
13 |
|
13 | |||
14 | DATABASES = { |
|
14 | DATABASES = { | |
15 | 'default': { |
|
15 | 'default': { | |
16 | 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. |
|
16 | 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. | |
17 | 'NAME': 'database.db', # Or path to database file if using sqlite3. |
|
17 | 'NAME': 'database.db', # Or path to database file if using sqlite3. | |
18 | 'USER': '', # Not used with sqlite3. |
|
18 | 'USER': '', # Not used with sqlite3. | |
19 | 'PASSWORD': '', # Not used with sqlite3. |
|
19 | 'PASSWORD': '', # Not used with sqlite3. | |
20 | 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. |
|
20 | 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. | |
21 | 'PORT': '', # Set to empty string for default. Not used with sqlite3. |
|
21 | 'PORT': '', # Set to empty string for default. Not used with sqlite3. | |
22 | 'CONN_MAX_AGE': None, |
|
22 | 'CONN_MAX_AGE': None, | |
23 | } |
|
23 | } | |
24 | } |
|
24 | } | |
25 |
|
25 | |||
26 | # Local time zone for this installation. Choices can be found here: |
|
26 | # Local time zone for this installation. Choices can be found here: | |
27 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
|
27 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name | |
28 | # although not all choices may be available on all operating systems. |
|
28 | # although not all choices may be available on all operating systems. | |
29 | # In a Windows environment this must be set to your system time zone. |
|
29 | # In a Windows environment this must be set to your system time zone. | |
30 | TIME_ZONE = 'Europe/Kiev' |
|
30 | TIME_ZONE = 'Europe/Kiev' | |
31 |
|
31 | |||
32 | # Language code for this installation. All choices can be found here: |
|
32 | # Language code for this installation. All choices can be found here: | |
33 | # http://www.i18nguy.com/unicode/language-identifiers.html |
|
33 | # http://www.i18nguy.com/unicode/language-identifiers.html | |
34 | LANGUAGE_CODE = 'en' |
|
34 | LANGUAGE_CODE = 'en' | |
35 |
|
35 | |||
36 | SITE_ID = 1 |
|
36 | SITE_ID = 1 | |
37 |
|
37 | |||
38 | # If you set this to False, Django will make some optimizations so as not |
|
38 | # If you set this to False, Django will make some optimizations so as not | |
39 | # to load the internationalization machinery. |
|
39 | # to load the internationalization machinery. | |
40 | USE_I18N = True |
|
40 | USE_I18N = True | |
41 |
|
41 | |||
42 | # If you set this to False, Django will not format dates, numbers and |
|
42 | # If you set this to False, Django will not format dates, numbers and | |
43 | # calendars according to the current locale. |
|
43 | # calendars according to the current locale. | |
44 | USE_L10N = True |
|
44 | USE_L10N = True | |
45 |
|
45 | |||
46 | # If you set this to False, Django will not use timezone-aware datetimes. |
|
46 | # If you set this to False, Django will not use timezone-aware datetimes. | |
47 | USE_TZ = True |
|
47 | USE_TZ = True | |
48 |
|
48 | |||
49 | USE_ETAGS = True |
|
49 | USE_ETAGS = True | |
50 |
|
50 | |||
51 | # Absolute filesystem path to the directory that will hold user-uploaded files. |
|
51 | # Absolute filesystem path to the directory that will hold user-uploaded files. | |
52 | # Example: "/home/media/media.lawrence.com/media/" |
|
52 | # Example: "/home/media/media.lawrence.com/media/" | |
53 | MEDIA_ROOT = './media/' |
|
53 | MEDIA_ROOT = './media/' | |
54 |
|
54 | |||
55 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a |
|
55 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a | |
56 | # trailing slash. |
|
56 | # trailing slash. | |
57 | # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" |
|
57 | # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" | |
58 | MEDIA_URL = '/media/' |
|
58 | MEDIA_URL = '/media/' | |
59 |
|
59 | |||
60 | # Absolute path to the directory static files should be collected to. |
|
60 | # Absolute path to the directory static files should be collected to. | |
61 | # Don't put anything in this directory yourself; store your static files |
|
61 | # Don't put anything in this directory yourself; store your static files | |
62 | # in apps' "static/" subdirectories and in STATICFILES_DIRS. |
|
62 | # in apps' "static/" subdirectories and in STATICFILES_DIRS. | |
63 | # Example: "/home/media/media.lawrence.com/static/" |
|
63 | # Example: "/home/media/media.lawrence.com/static/" | |
64 | STATIC_ROOT = '' |
|
64 | STATIC_ROOT = '' | |
65 |
|
65 | |||
66 | # URL prefix for static files. |
|
66 | # URL prefix for static files. | |
67 | # Example: "http://media.lawrence.com/static/" |
|
67 | # Example: "http://media.lawrence.com/static/" | |
68 | STATIC_URL = '/static/' |
|
68 | STATIC_URL = '/static/' | |
69 |
|
69 | |||
70 | # Additional locations of static files |
|
70 | # Additional locations of static files | |
71 | # It is really a hack, put real paths, not related |
|
71 | # It is really a hack, put real paths, not related | |
72 | STATICFILES_DIRS = ( |
|
72 | STATICFILES_DIRS = ( | |
73 | os.path.dirname(__file__) + '/boards/static', |
|
73 | os.path.dirname(__file__) + '/boards/static', | |
74 |
|
74 | |||
75 | # '/d/work/python/django/neboard/neboard/boards/static', |
|
75 | # '/d/work/python/django/neboard/neboard/boards/static', | |
76 | # Put strings here, like "/home/html/static" or "C:/www/django/static". |
|
76 | # Put strings here, like "/home/html/static" or "C:/www/django/static". | |
77 | # Always use forward slashes, even on Windows. |
|
77 | # Always use forward slashes, even on Windows. | |
78 | # Don't forget to use absolute paths, not relative paths. |
|
78 | # Don't forget to use absolute paths, not relative paths. | |
79 | ) |
|
79 | ) | |
80 |
|
80 | |||
81 | # List of finder classes that know how to find static files in |
|
81 | # List of finder classes that know how to find static files in | |
82 | # various locations. |
|
82 | # various locations. | |
83 | STATICFILES_FINDERS = ( |
|
83 | STATICFILES_FINDERS = ( | |
84 | 'django.contrib.staticfiles.finders.FileSystemFinder', |
|
84 | 'django.contrib.staticfiles.finders.FileSystemFinder', | |
85 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
|
85 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder', | |
86 | 'compressor.finders.CompressorFinder', |
|
86 | 'compressor.finders.CompressorFinder', | |
87 | ) |
|
87 | ) | |
88 |
|
88 | |||
89 | if DEBUG: |
|
89 | if DEBUG: | |
90 | STATICFILES_STORAGE = \ |
|
90 | STATICFILES_STORAGE = \ | |
91 | 'django.contrib.staticfiles.storage.StaticFilesStorage' |
|
91 | 'django.contrib.staticfiles.storage.StaticFilesStorage' | |
92 | else: |
|
92 | else: | |
93 | STATICFILES_STORAGE = \ |
|
93 | STATICFILES_STORAGE = \ | |
94 | 'django.contrib.staticfiles.storage.CachedStaticFilesStorage' |
|
94 | 'django.contrib.staticfiles.storage.CachedStaticFilesStorage' | |
95 |
|
95 | |||
96 | # Make this unique, and don't share it with anybody. |
|
96 | # Make this unique, and don't share it with anybody. | |
97 | SECRET_KEY = '@1rc$o(7=tt#kd+4s$u6wchm**z^)4x90)7f6z(i&55@o11*8o' |
|
97 | SECRET_KEY = '@1rc$o(7=tt#kd+4s$u6wchm**z^)4x90)7f6z(i&55@o11*8o' | |
98 |
|
98 | |||
99 | # List of callables that know how to import templates from various sources. |
|
99 | # List of callables that know how to import templates from various sources. | |
100 | TEMPLATE_LOADERS = ( |
|
100 | TEMPLATE_LOADERS = ( | |
101 | 'django.template.loaders.filesystem.Loader', |
|
101 | 'django.template.loaders.filesystem.Loader', | |
102 | 'django.template.loaders.app_directories.Loader', |
|
102 | 'django.template.loaders.app_directories.Loader', | |
103 | ) |
|
103 | ) | |
104 |
|
104 | |||
105 | TEMPLATE_CONTEXT_PROCESSORS = ( |
|
105 | TEMPLATE_CONTEXT_PROCESSORS = ( | |
106 | 'django.core.context_processors.media', |
|
106 | 'django.core.context_processors.media', | |
107 | 'django.core.context_processors.static', |
|
107 | 'django.core.context_processors.static', | |
108 | 'django.core.context_processors.request', |
|
108 | 'django.core.context_processors.request', | |
109 | 'django.contrib.auth.context_processors.auth', |
|
109 | 'django.contrib.auth.context_processors.auth', | |
110 | 'boards.context_processors.user_and_ui_processor', |
|
110 | 'boards.context_processors.user_and_ui_processor', | |
111 | ) |
|
111 | ) | |
112 |
|
112 | |||
113 | MIDDLEWARE_CLASSES = ( |
|
113 | MIDDLEWARE_CLASSES = ( | |
114 | 'django.middleware.http.ConditionalGetMiddleware', |
|
114 | 'django.middleware.http.ConditionalGetMiddleware', | |
115 | 'django.contrib.sessions.middleware.SessionMiddleware', |
|
115 | 'django.contrib.sessions.middleware.SessionMiddleware', | |
116 | 'django.middleware.locale.LocaleMiddleware', |
|
116 | 'django.middleware.locale.LocaleMiddleware', | |
117 | 'django.middleware.common.CommonMiddleware', |
|
117 | 'django.middleware.common.CommonMiddleware', | |
118 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
|
118 | 'django.contrib.auth.middleware.AuthenticationMiddleware', | |
119 | 'django.contrib.messages.middleware.MessageMiddleware', |
|
119 | 'django.contrib.messages.middleware.MessageMiddleware', | |
120 | 'boards.middlewares.BanMiddleware', |
|
120 | 'boards.middlewares.BanMiddleware', | |
121 | 'boards.middlewares.TimezoneMiddleware', |
|
121 | 'boards.middlewares.TimezoneMiddleware', | |
122 | ) |
|
122 | ) | |
123 |
|
123 | |||
124 | ROOT_URLCONF = 'neboard.urls' |
|
124 | ROOT_URLCONF = 'neboard.urls' | |
125 |
|
125 | |||
126 | # Python dotted path to the WSGI application used by Django's runserver. |
|
126 | # Python dotted path to the WSGI application used by Django's runserver. | |
127 | WSGI_APPLICATION = 'neboard.wsgi.application' |
|
127 | WSGI_APPLICATION = 'neboard.wsgi.application' | |
128 |
|
128 | |||
129 | TEMPLATE_DIRS = ( |
|
129 | TEMPLATE_DIRS = ( | |
130 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
|
130 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". | |
131 | # Always use forward slashes, even on Windows. |
|
131 | # Always use forward slashes, even on Windows. | |
132 | # Don't forget to use absolute paths, not relative paths. |
|
132 | # Don't forget to use absolute paths, not relative paths. | |
133 | 'templates', |
|
133 | 'templates', | |
134 | ) |
|
134 | ) | |
135 |
|
135 | |||
136 | INSTALLED_APPS = ( |
|
136 | INSTALLED_APPS = ( | |
137 | 'django.contrib.auth', |
|
137 | 'django.contrib.auth', | |
138 | 'django.contrib.contenttypes', |
|
138 | 'django.contrib.contenttypes', | |
139 | 'django.contrib.sessions', |
|
139 | 'django.contrib.sessions', | |
140 | # 'django.contrib.sites', |
|
140 | # 'django.contrib.sites', | |
141 | 'django.contrib.messages', |
|
141 | #'django.contrib.messages', | |
142 | 'django.contrib.staticfiles', |
|
142 | 'django.contrib.staticfiles', | |
143 | # Uncomment the next line to enable the admin: |
|
143 | # Uncomment the next line to enable the admin: | |
144 | 'django.contrib.admin', |
|
144 | 'django.contrib.admin', | |
145 | # Uncomment the next line to enable admin documentation: |
|
145 | # Uncomment the next line to enable admin documentation: | |
146 | # 'django.contrib.admindocs', |
|
146 | # 'django.contrib.admindocs', | |
147 | 'django.contrib.humanize', |
|
147 | #'django.contrib.humanize', | |
148 |
|
148 | |||
149 | 'debug_toolbar', |
|
149 | 'debug_toolbar', | |
150 |
|
150 | |||
151 | # Search |
|
151 | # Search | |
152 | 'haystack', |
|
152 | 'haystack', | |
153 |
|
153 | |||
154 | 'boards', |
|
154 | 'boards', | |
155 | ) |
|
155 | ) | |
156 |
|
156 | |||
157 | # A sample logging configuration. The only tangible logging |
|
157 | # A sample logging configuration. The only tangible logging | |
158 | # performed by this configuration is to send an email to |
|
158 | # performed by this configuration is to send an email to | |
159 | # the site admins on every HTTP 500 error when DEBUG=False. |
|
159 | # the site admins on every HTTP 500 error when DEBUG=False. | |
160 | # See http://docs.djangoproject.com/en/dev/topics/logging for |
|
160 | # See http://docs.djangoproject.com/en/dev/topics/logging for | |
161 | # more details on how to customize your logging configuration. |
|
161 | # more details on how to customize your logging configuration. | |
162 | LOGGING = { |
|
162 | LOGGING = { | |
163 | 'version': 1, |
|
163 | 'version': 1, | |
164 | 'disable_existing_loggers': False, |
|
164 | 'disable_existing_loggers': False, | |
165 | 'formatters': { |
|
165 | 'formatters': { | |
166 | 'verbose': { |
|
166 | 'verbose': { | |
167 | 'format': '%(levelname)s %(asctime)s %(name)s %(process)d %(thread)d %(message)s' |
|
167 | 'format': '%(levelname)s %(asctime)s %(name)s %(process)d %(thread)d %(message)s' | |
168 | }, |
|
168 | }, | |
169 | 'simple': { |
|
169 | 'simple': { | |
170 | 'format': '%(levelname)s %(asctime)s [%(name)s] %(message)s' |
|
170 | 'format': '%(levelname)s %(asctime)s [%(name)s] %(message)s' | |
171 | }, |
|
171 | }, | |
172 | }, |
|
172 | }, | |
173 | 'filters': { |
|
173 | 'filters': { | |
174 | 'require_debug_false': { |
|
174 | 'require_debug_false': { | |
175 | '()': 'django.utils.log.RequireDebugFalse' |
|
175 | '()': 'django.utils.log.RequireDebugFalse' | |
176 | } |
|
176 | } | |
177 | }, |
|
177 | }, | |
178 | 'handlers': { |
|
178 | 'handlers': { | |
179 | 'console': { |
|
179 | 'console': { | |
180 | 'level': 'DEBUG', |
|
180 | 'level': 'DEBUG', | |
181 | 'class': 'logging.StreamHandler', |
|
181 | 'class': 'logging.StreamHandler', | |
182 | 'formatter': 'simple' |
|
182 | 'formatter': 'simple' | |
183 | }, |
|
183 | }, | |
184 | }, |
|
184 | }, | |
185 | 'loggers': { |
|
185 | 'loggers': { | |
186 | 'boards': { |
|
186 | 'boards': { | |
187 | 'handlers': ['console'], |
|
187 | 'handlers': ['console'], | |
188 | 'level': 'DEBUG', |
|
188 | 'level': 'DEBUG', | |
189 | } |
|
189 | } | |
190 | }, |
|
190 | }, | |
191 | } |
|
191 | } | |
192 |
|
192 | |||
193 | HAYSTACK_CONNECTIONS = { |
|
193 | HAYSTACK_CONNECTIONS = { | |
194 | 'default': { |
|
194 | 'default': { | |
195 | 'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine', |
|
195 | 'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine', | |
196 | 'PATH': os.path.join(os.path.dirname(__file__), 'whoosh_index'), |
|
196 | 'PATH': os.path.join(os.path.dirname(__file__), 'whoosh_index'), | |
197 | }, |
|
197 | }, | |
198 | } |
|
198 | } | |
199 |
|
199 | |||
200 | THEMES = [ |
|
200 | THEMES = [ | |
201 | ('md', 'Mystic Dark'), |
|
201 | ('md', 'Mystic Dark'), | |
202 | ('md_centered', 'Mystic Dark (centered)'), |
|
202 | ('md_centered', 'Mystic Dark (centered)'), | |
203 | ('sw', 'Snow White'), |
|
203 | ('sw', 'Snow White'), | |
204 | ('pg', 'Photon Gray'), |
|
204 | ('pg', 'Photon Gray'), | |
205 | ] |
|
205 | ] | |
206 |
|
206 | |||
207 | IMAGE_VIEWERS = [ |
|
207 | IMAGE_VIEWERS = [ | |
208 | ('simple', 'Simple'), |
|
208 | ('simple', 'Simple'), | |
209 | ('popup', 'Popup'), |
|
209 | ('popup', 'Popup'), | |
210 | ] |
|
210 | ] | |
211 |
|
211 | |||
212 | POSTING_DELAY = 20 # seconds |
|
212 | POSTING_DELAY = 20 # seconds | |
213 |
|
213 | |||
214 | # Websocket settins |
|
214 | # Websocket settins | |
215 | CENTRIFUGE_HOST = 'localhost' |
|
215 | CENTRIFUGE_HOST = 'localhost' | |
216 | CENTRIFUGE_PORT = '9090' |
|
216 | CENTRIFUGE_PORT = '9090' | |
217 |
|
217 | |||
218 | CENTRIFUGE_ADDRESS = 'http://{}:{}'.format(CENTRIFUGE_HOST, CENTRIFUGE_PORT) |
|
218 | CENTRIFUGE_ADDRESS = 'http://{}:{}'.format(CENTRIFUGE_HOST, CENTRIFUGE_PORT) | |
219 | CENTRIFUGE_PROJECT_ID = '<project id here>' |
|
219 | CENTRIFUGE_PROJECT_ID = '<project id here>' | |
220 | CENTRIFUGE_PROJECT_SECRET = '<project secret here>' |
|
220 | CENTRIFUGE_PROJECT_SECRET = '<project secret here>' | |
221 | CENTRIFUGE_TIMEOUT = 5 |
|
221 | CENTRIFUGE_TIMEOUT = 5 | |
222 |
|
222 | |||
223 | # Debug mode middlewares |
|
223 | # Debug mode middlewares | |
224 | if DEBUG: |
|
224 | if DEBUG: | |
225 | MIDDLEWARE_CLASSES += ( |
|
225 | MIDDLEWARE_CLASSES += ( | |
226 | 'debug_toolbar.middleware.DebugToolbarMiddleware', |
|
226 | 'debug_toolbar.middleware.DebugToolbarMiddleware', | |
227 | ) |
|
227 | ) | |
228 |
|
228 | |||
229 | def custom_show_toolbar(request): |
|
229 | def custom_show_toolbar(request): | |
230 | return True |
|
230 | return True | |
231 |
|
231 | |||
232 | DEBUG_TOOLBAR_CONFIG = { |
|
232 | DEBUG_TOOLBAR_CONFIG = { | |
233 | 'ENABLE_STACKTRACES': True, |
|
233 | 'ENABLE_STACKTRACES': True, | |
234 | 'SHOW_TOOLBAR_CALLBACK': 'neboard.settings.custom_show_toolbar', |
|
234 | 'SHOW_TOOLBAR_CALLBACK': 'neboard.settings.custom_show_toolbar', | |
235 | } |
|
235 | } | |
236 |
|
236 | |||
237 | # FIXME Uncommenting this fails somehow. Need to investigate this |
|
237 | # FIXME Uncommenting this fails somehow. Need to investigate this | |
238 | #DEBUG_TOOLBAR_PANELS += ( |
|
238 | #DEBUG_TOOLBAR_PANELS += ( | |
239 | # 'debug_toolbar.panels.profiling.ProfilingDebugPanel', |
|
239 | # 'debug_toolbar.panels.profiling.ProfilingDebugPanel', | |
240 | #) |
|
240 | #) |
General Comments 0
You need to be logged in to leave comments.
Login now