From e1a3f891a844bba42ba1f5d3500ab1eedd260319 Mon Sep 17 00:00:00 2001 From: erickson Date: Thu, 19 May 2005 20:11:45 +0000 Subject: [PATCH] adding git-svn-id: svn://svn.open-ils.org/ILS/trunk@746 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../templates/opac/pages/record_detail.ttk | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Open-ILS/src/templates/opac/pages/record_detail.ttk diff --git a/Open-ILS/src/templates/opac/pages/record_detail.ttk b/Open-ILS/src/templates/opac/pages/record_detail.ttk new file mode 100644 index 0000000000..f5cd50737f --- /dev/null +++ b/Open-ILS/src/templates/opac/pages/record_detail.ttk @@ -0,0 +1,34 @@ +[% + + # --------------------------------------------------------------------------------- + # This page will display a list of metarecord search results + # --------------------------------------------------------------------------------- + tm = global.textmap.opac.mr_result; + + WRAPPER html/html; + + WRAPPER html/head title="Record Detail Page"; + INCLUDE opac/pages/chunks/css_includes.ttk; + END; + + + + WRAPPER html/body onload='pageInit();'; + + INCLUDE opac/pages/chunks/body_header.ttk; + + WRAPPER html/div id='page_trail';END; + + # --------------------------------------------------------------------------------- + # Display record detail info + # --------------------------------------------------------------------------------- + + lines(1); + "Record details go here..."; + + END; # body + + END; # html + +%] + -- 2.43.2