~mhall119/+junk/quickly-reboot-mockups

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Example template class

from quickly.template import Template

class ExampleTemplate(Template):
    
    class Meta:
        name = 'Template Name'
        icon = 'icon-name'
        description = 'Describe what the template is for'
    
    def __init__(self):
        super(ExampleTemplate, self).__init__()
        
    def get_all_commands(self)
        # Return a list of commands for this template
        return []
        
    def get_available_commands(self, project):
        # Get commands currently available for the given project
        return []