Implement invoice model and admin API
This commit is contained in:
parent
a136bcc52b
commit
0962891a9b
16 changed files with 331 additions and 1 deletions
8
gnuviechadmin/invoices/apps.py
Normal file
8
gnuviechadmin/invoices/apps.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.apps import AppConfig
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class InvoiceConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "invoices"
|
||||
verbose_name = _("Invoices")
|
||||
Loading…
Add table
Add a link
Reference in a new issue