saving works now

This commit is contained in:
2024-12-29 03:44:52 +01:00
parent 4d27a84907
commit 4a70d1f571
73 changed files with 18361 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = 'Print hello world.'
def add_arguments(self, parser):
# Argumento nomeado
parser.add_argument(
'--awards', '-a',
action='store_true',
help='Help of awards options.'
)
def handle(self, *args, **options):
self.stdout.write('Hello world.')
if options['awards']:
self.stdout.write('Awards')