Re: TemplateCommand

2021-06-28 Thread 'Adam Johnson' via Django developers (Contributions to Django itself)
Django has the TemplateCommand class to support its startproject and startapp. These two are fairly similar so the class exists to share code between them. As I understand, your GDAPS project aims to provide similar functionality, but with differences. In this case I can see that you'd have overla

TemplateCommand

2021-06-28 Thread Christian González
Hi all, I recently made a plugin framework for django (GDAPS), and needed to do some templating. I had seen that there is an undocumented TemplaceCommand in Django which does, well, what it does. It is a little opinionated and not very flexible, so I couldn't inherit from it for my project,