View | Details | Raw Unified | Return to bug 15008
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_15008_add_custom_html_areas_to_circ_and_reports_home.sql (+2 lines)
Line 0 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('IntranetReportsHomeHTML', '', 'Show the following HTML in a div on the bottom of the reports home page', NULL, 'Free');
2
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('IntranetCirculationHomeHTML', '', 'Show the following HTML in a div on the bottom of the reports home page', NULL, 'Free');
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_client.pref (+10 lines)
Lines 91-96 Staff Client: Link Here
91
            - pref: SlipCSS
91
            - pref: SlipCSS
92
              class: url
92
              class: url
93
            - on Issue and Hold Slips. (This should be a complete URL, starting with <code>http://</code>.)
93
            - on Issue and Hold Slips. (This should be a complete URL, starting with <code>http://</code>.)
94
        -
95
            - "Show the following HTML in its own div on the bottom of the home page of the circulation module:"
96
            - pref: IntranetCirculationHomeHTML
97
              type: htmlarea
98
              class: code
99
        -
100
            - "Show the following HTML in its own div on the bottom of the home page of the reports module:"
101
            - pref: IntranetReportsHomeHTML
102
              type: htmlarea
103
              class: code
94
    Options:
104
    Options:
95
        -
105
        -
96
            - pref: viewMARC
106
            - pref: viewMARC
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (+4 lines)
Lines 68-74 Link Here
68
            </ul>
68
            </ul>
69
		</ul>
69
		</ul>
70
	</div>
70
	</div>
71
71
</div>
72
</div>
73
    <div class="yui-g" id="intranet-circulation-home-html">
74
        [% Koha.Preference('IntranetCirculationHomeHTML') %]
75
    </div>
72
</div>
76
</div>
73
77
74
[% INCLUDE 'intranet-bottom.inc' %]
78
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reports-home.tt (-1 / +5 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Reports</title>
3
<title>Koha &rsaquo; Reports</title>
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
Lines 69-74 Link Here
69
	</ul></div>
70
	</ul></div>
70
</div>
71
</div>
71
72
73
72
</div>
74
</div>
75
    <div class="yui-g" id="intranet-reports-home-html">
76
        [% Koha.Preference('IntranetReportsHomeHTML') %]
77
    </div>
73
</div>
78
</div>
74
[% INCLUDE 'intranet-bottom.inc' %]
79
[% INCLUDE 'intranet-bottom.inc' %]
75
- 

Return to bug 15008