Split Terms and Public notes to dedicated pages

I assume the parts are out of order.

We can add an import/export option to the designs in the next release, it will make it easier to help figure out the problem.

@david any thoughts?

Hi @davsch

This is how I solved it:

In the Content Tab (below the closing div from id=body)

<div class="page-break" contenteditable="false"></div>

<div id="public-notes">
    $public_notes
</div>

In the includes Tab

/* Defines a class for manual page breaks via inserted .page-break element */
div.page-break {
    page-break-after: always;
}

/* Define the styling of the div container which holds the public notes */
#public-notes {
    margin-top: 2cm;
}

In the Footer Tab

<div class="repeating-footerx" id="footer">
    <p data-ref="total_table-footer">$entity_footer</p>

    <script>
        // Clear up space a bit…
    </script>
</div>

Maybe this helps you…

2 Likes

Seems like latest updates broke this code and it no longer works. Any ideas on how to make it work again?

@david do you have any thoughts?

Need more information to be helpful.