Exemple #1
0
def getFormats(self):
    templates = getARReportTemplates()

    out = []

    for template in templates:
        if template['title'] == FILE_NAME:
            out.insert(0, template)
        else:
            out.append(template)

    return out
Exemple #2
0
 def getAvailableFormats(self):
     """ Returns the available formats found in templates/reports
     """
     return getARReportTemplates()
Exemple #3
0
 def getAvailableFormats(self):
     """ Returns the available formats found in templates/reports
     """
     return getARReportTemplates()