symposion_app/symposion/reviews/apps.py
Hiroshi Miura 3207621058 i18n all part
- forms for labels and helps
- views for success or warning messages
- apps and models verbose_names for admin

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2015-08-03 23:37:33 +09:00

8 lines
229 B
Python

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class ReviewsConfig(AppConfig):
name = "symposion.reviews"
label = "symposion_reviews"
verbose_name = _("Symposion Reviews")