mirror of https://github.com/interlegis/sigi.git
Guilherme Gondim
15 years ago
3 changed files with 27 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||||
|
class CasasAderidasReport(object): |
||||
|
pass |
||||
|
|
||||
|
class CasasNaoAderidasReport(object): |
||||
|
pass |
||||
|
|
||||
|
class CasasComEquipamentosReport(object): |
||||
|
pass |
||||
|
|
||||
|
class SemEquipamentosReport(object): |
||||
|
pass |
@ -0,0 +1,15 @@ |
|||||
|
{% extends "admin/change_list.html" %} |
||||
|
{% load i18n reporting_tags %} |
||||
|
|
||||
|
{% block object-tools %} |
||||
|
{% if has_add_permission %} |
||||
|
<ul class="object-tools"> |
||||
|
<li><a href="reports/{{ query_str }}">Relatórios</a></li> |
||||
|
<li> |
||||
|
<a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink"> |
||||
|
{% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %} |
||||
|
</a> |
||||
|
</li> |
||||
|
</ul> |
||||
|
{% endif %} |
||||
|
{% endblock %} |
Loading…
Reference in new issue