From 71522f4fa07981333ec96b53419f1249ad32907a Mon Sep 17 00:00:00 2001 From: Jenny Schweers Date: Tue, 10 Dec 2024 22:14:38 -0500 Subject: [PATCH] Removed hqadmin_base_report.html --- .../hqadmin/hqadmin_base_report.html | 61 ------------------- 1 file changed, 61 deletions(-) delete mode 100644 corehq/apps/hqadmin/templates/hqadmin/hqadmin_base_report.html diff --git a/corehq/apps/hqadmin/templates/hqadmin/hqadmin_base_report.html b/corehq/apps/hqadmin/templates/hqadmin/hqadmin_base_report.html deleted file mode 100644 index 374241b4b965..000000000000 --- a/corehq/apps/hqadmin/templates/hqadmin/hqadmin_base_report.html +++ /dev/null @@ -1,61 +0,0 @@ -{% extends "hqwebapp/bootstrap3/two_column.html" %} -{% load hq_shared_tags %} -{% load i18n %} - -{% block title %}{% if current_page and section %}{% if current_page.title %}{{ current_page.title }} : {% endif %}{{ section.page_name }} {% else %}{{ report.title }}{% endif %}: Admin Reports{% endblock %} - -{% block js %}{{ block.super }} - {% if not use_js_bundler %} - {% if request.use_datatables %} - - {% endif %} - {% if request.use_jquery_ui %} - - {% endif %} - - - {% endif %} -{% endblock %} - -{% block page_breadcrumbs %} - -{% endblock %} - -{% block pre_page_content %} - {% if report.is_exportable or report.is_emailable or report.is_printable %} -
- {% if report.is_exportable %} - - {% trans "Export to Excel" %} - - {% endif %} - - {% if report.is_emailable and request.couch_user.can_download_reports %} - - {% trans "Email report" %} - - {% endif %} - - {% if report.is_printable %} - - {% trans "Print" %} - - {% endif %} -
- {% endif %} -{% endblock %} - -{% block page_content %} - {% initial_page_data 'aoColumns' aoColumns %} - {% if not hide_filters %} - {% include "hqadmin/hqadmin_base_filters.html" %} - {% endif %} -
- {% block reportcontent %}{% endblock %} -
-{% endblock %}