summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts/role/edit.phtml
blob: 59482f0b2aacc2ef860a69f541cb3e2ed08ef8ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<h1>Edit Role</h1>
<?php
if(isset($this->addForm)) {
	$this->addForm->setAction('/etc/role/add');
	echo $this->addForm;
}
else {
	$this->editForm->setAction($this->url());
	echo $this->editForm;
}
?>