apps.py 246 B

12345678910111213
  1. """
  2. App Config file
  3. """
  4. from django.apps import AppConfig
  5. class TransactionsConfig(AppConfig):
  6. """
  7. Transactions app config class
  8. """
  9. name = 'transactions'
  10. verbose_name = "Transaction"
  11. verbose_name_plural= "Transactions"