##// END OF EJS Templates
Using opening post ID from cache, not passing it to the post view
Using opening post ID from cache, not passing it to the post view

File last commit:

r211:5a120222 default
r621:59a1deab default
Show More
authors.py
30 lines | 820 B | text/x-python | PythonLexer
from django.utils.translation import ugettext_lazy as _
__author__ = 'neko259'
ROLE_AUTHOR = _('author')
ROLE_DEVELOPER = _('developer')
ROLE_JS_DEV = _('javascript developer')
ROLE_DESIGNER = _('designer')
authors = {
'neko259': {
'name': 'Pavel Ryapolov',
'contacts': ['neko259@gmail.com'],
'roles': [ROLE_AUTHOR, ROLE_DEVELOPER],
},
'ilyas': {
'name': 'Ilyas Babayev',
'contacts': ['zamesilyasa@gmail.com'],
'roles': [ROLE_AUTHOR, ROLE_DEVELOPER],
},
'ritsufag': {
'name': 'Aiko Kirino',
'contacts': ['ritsufag@gmail.com'],
'roles': [ROLE_JS_DEV, ROLE_DESIGNER],
},
'Tenno Seremel': {
'name': 'anonymous',
'contacts': ['html@serenareem.net'],
'roles': [ROLE_JS_DEV, ROLE_DESIGNER],
},
}