3207621058
- 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>
8 lines
229 B
Python
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")
|