From 6410a487b893948e4578cfbaaa83b10cc69c7d3f Mon Sep 17 00:00:00 2001 From: Liz Rea <wizzyrea@gmail.com> Date: Fri, 30 Dec 2011 01:08:06 -0600 Subject: [PATCH] Bug 7388 [enh] - adding menu div to guided reports screen Content-Type: text/plain; charset="utf-8" To test: More -> reports -> Guided Reports Wizard Verify that the menu items on the left hand side are in menu tabs. Here again - much prettier when the corners are rounded. --- .../prog/en/includes/guided-reports-view.inc | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc index d354170..53e99fd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc @@ -1,15 +1,17 @@ -<h5>Build and Run Reports</h5> +<div id="menu"> +<h4>Build & Run Reports</h4> <ul> [% IF ( CAN_user_reports_create_reports ) %]<li><a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Build%20new">Build New</a></li>[% END %] [% IF ( CAN_user_reports_execute_reports ) %]<li><a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved">Use Saved</a></li>[% END %] [% IF ( CAN_user_reports_create_reports ) %]<li><a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create%20report%20from%20SQL">Create from SQL</a></li>[% END %] </ul> -<h5>Reports Dictionary</h5> +<h4>Reports Dictionary</h4> <ul> <li><a href="/cgi-bin/koha/reports/dictionary.pl?phase=View%20Dictionary">View Dictionary</a></li> </ul> -<h5>Useful Resources</h5> +<h4>Useful Resources</h4> <ul> <li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha Report Library</a></li> <li><a href="http://schema.koha-community.org/" target="blank">Koha Database Schema</a></li> </ul> +</div> -- 1.7.5.4