I made a php template with the following code
// Show inscription, if any
if(trim($page->inscr_nr) != "")
{
$content .= '<tr id="inscr_nr"><td class="label"><p>Inscriptionnr</p></td><td><p>';
$content .= $page->inscr_nr->title . '</p></td></tr>';
}
In the backend I can fill the Inscriptionr ( a field inscr_nr that i added)
BUT in the page only the text "Inscriptionnr" shows up, not the variable inscr_nr
What is wrong with the code??? (by the way: inscr_nr is a text field)