@@ -, +, @@ - Run any report. - On the results page, confirm that the report id portion of the page heading is styled and labeled "Report number." --- koha-tmpl/intranet-tmpl/prog/css/reports.css | 26 ++++++++++++++++++- .../modules/reports/guided_reports_start.tt | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/css/reports.css +++ a/koha-tmpl/intranet-tmpl/prog/css/reports.css @@ -95,4 +95,28 @@ fieldset.rows .chart-column-conf label { #makechart select { max-width: 12em; -} +} + +.report_heading_id { + background-color: #F3F3F3; + border: 1px solid #DDD; + border-radius: 5px; + display: inline-block; + font-size: 1.2rem; + font-weight: normal; + margin-left: .5em; + white-space: nowrap; +} + +.report_heading_id .report_label { + display: inline-block; + padding: .5em; + padding-right: 0; +} + +.report_heading_id .report_number { + display: inline-block; + font-weight: bold; + padding: .5em; + padding-left: 0; +} --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -899,7 +899,7 @@ [% END # /IF ( enter_params ) %] [% IF ( execute ) %] -

[% name | html %] ([% id | html %])

+

[% name | html %] Report number: [% id | html %]

[% IF ( notes ) %]

Notes: [% notes | html %]

[% END %] --