mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			301 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			301 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.core.management.commands.startproject import Command as BaseCommand
 | |
| 
 | |
| 
 | |
| class Command(BaseCommand):
 | |
|     def add_arguments(self, parser):
 | |
|         super().add_arguments(parser)
 | |
|         parser.add_argument(
 | |
|             "--extra", help="An arbitrary extra value passed to the context"
 | |
|         )
 |