9 lines
265 B
Python
9 lines
265 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class FertilizationConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "fertilization"
|
||
|
|
label = "fertilization_recommendation"
|
||
|
|
verbose_name = "Fertilization Recommendation & Plan Parser"
|