@@ -, +, @@ reports - In the left-hand sidebar menu you should see a "Koha database schema" link. Depending on which version you're using, it may or may not have a version string included, e.g. "http://schema.koha-community.org/20_05" - In master, there is no version string added because there is no schema available for development versions. - If you apply the patch on a previous version, e.g. 'origin/20.11.x' you will see a link directly to that schema page. --- koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc | 2 +- reports/guided_reports.pl | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc @@ -12,7 +12,7 @@
Useful resources
--- a/reports/guided_reports.pl +++ a/reports/guided_reports.pl @@ -94,6 +94,12 @@ elsif ($session and not $input->param('clear_filters')) { my $op = $input->param('op') || q||; my @errors = (); + +my $version_string = Koha::version(); +my ( $major, $minor, $maintenance, $development ) = split( '\.', $version_string ); +my $schema_version = ( $development ne '000' ) ? "" : $major . "_" . $minor; +$template->param( 'schema_version' => $schema_version ); + if ( !$phase ) { $template->param( 'start' => 1 ); # show welcome page --