diff --git a/sigi/templates/birt/birtForm.html b/sigi/templates/birt/birtForm.html new file mode 100644 index 0000000..51133ec --- /dev/null +++ b/sigi/templates/birt/birtForm.html @@ -0,0 +1,60 @@ +{% extends "admin/change_form.html" %} +{% load i18n %} + +{% block title %}Relatórios{% endblock %} + +{% block content %} +

{{birt.getName}}

+

{{birt.getTitle}}

+ +
+ + {% for paramName, paramData in params.iteritems %} +

+ + + {%if paramData.controlType == 'list-box'%} + + {%else%} + {%if paramData.controlType == 'radio-button'%} +
+ {%for option in paramData.selectionList%} + + + +
+ {%endfor%} + {%else%} + + {%endif%} + {%endif%} +
+

+ {% endfor %} + + + + +
+ +{% endblock %} \ No newline at end of file diff --git a/sigi/templates/birt/birtMenu.html b/sigi/templates/birt/birtMenu.html new file mode 100644 index 0000000..eb689ca --- /dev/null +++ b/sigi/templates/birt/birtMenu.html @@ -0,0 +1,23 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block title %}Relatórios{% endblock %} + +{% block content %} + +

Relatórios {{submenu}}

+ +{%if folders or reports %} + +{%else%} +

Nenhum item para exibir

+{%endif%} + +{% endblock %} \ No newline at end of file