.
*/
include("./include/include.php");
require_once(FILESYSTEMROOTPATH."jc/include/classes/DefaultLayout.php");
$layout = new DefaultLayout("JC_MANAGE", "./jc/");
$layout->init();
$proposalsService = $GLOBALS['ClassFactory']->getProposalsService();
$proposal_id = $_GET['proposal_id'];
$layout->echoln('Back
');
$proposal = $proposalsService->load($proposal_id);
//display proposal
$layout->echoln('Title: '.$proposal->getTitle());
$layout->echoln('
Proposers: '.$proposal->getProposers());
$layout->echoln('
Motivation: '.nl2br($proposal->getMotivation()));
$layout->echoln('
');
$layout->echoln('View changes');
$layout->page_footer();
?>