Summary: | Command line switch to add page breaks to overdue_notices.pl sent to the library | ||
---|---|---|---|
Product: | Koha | Reporter: | Barton Chittenden <barton> |
Component: | Notices | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | ||
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Barton Chittenden
2014-10-06 13:49:48 UTC
HTML page breaks can be added as follows: CSS: @media all { .page-break { display: none; } } @media print { .page-break { display: block; page-break-before: always; } } HTML: <div class="page-break"></div> I think maybe we don't need a switch for that - it sounds interesting in general. |