Class TemplateCommand
Copy either a Django application layout template or a Django project layout template into the specified directory.
Declaration
source linkDocumentation
:param style: A color style object (see django.core.management.color).
:param app_or_project: The string 'app' or 'project'.
:param name: The name of the application or project.
:param directory: The directory to which the template should be copied.
:param options: The additional variables passed to project or app templates
Methods
▶ def add_arguments(self, parser) overrideinherited doc Entry point for subclassed commands to add custom arguments.
▷ def download(self, url) Download the given URL and return the file name.
▷ def extract(self, filename) Extract the given file to a temporary directory and return the path of the directory with the extracted content.
▶ def handle(self, app_or_project, name, target=None, **options) overrideinherited doc The actual logic of the command. Subclasses must implement this method.
▷ def handle_template(self, template, subdir) Determine where the app or project templates are. Use django.__path__[0] as the default because the Django install directory isn't known.
▷ def is_url(self, template) Return True if the name looks like a URL.
▷ def make_writeable(self, filename) Make sure that the file is writeable. Useful if our source is read-only.
▷ def splitext(self, the_path) Like os.path.splitext, but takes off .tar, too
Inherited methods
Subclasses
Reexports