10 lines
178 B
Python
10 lines
178 B
Python
|
# coding:utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ResultsConfig(AppConfig):
|
||
|
name = 'results'
|
||
|
verbose_name=u'研究成果'
|