Index: branches/TaskRewrite/src/grails-app/views/authority/create.gsp
===================================================================
--- branches/TaskRewrite/src/grails-app/views/authority/create.gsp	(revision 59)
+++ branches/TaskRewrite/src/grails-app/views/authority/create.gsp	(revision 59)
@@ -0,0 +1,51 @@
+<head>
+	<meta name="layout" content="main" />
+	<title>Create Authority</title>
+</head>
+
+<body>
+
+	<div class="nav">
+		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+	</div>
+
+	<div class="body">
+
+		<h1>Create Authority</h1>
+		<g:if test="${flash.message}">
+		<div class="message">${flash.message}</div>
+		</g:if>
+		<g:hasErrors bean="${authority}">
+		<div class="errors">
+		<g:renderErrors bean="${authority}" as="list" />
+		</div>
+		</g:hasErrors>
+
+		<g:form action="save">
+		<div class="dialog">
+		<table>
+		<tbody>
+			<tr class="prop">
+				<td valign="top" class="name"><label for="authority">Authority Name:</label></td>
+				<td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
+					<input type="text" id="authority" name="authority" value="${authority?.authority?.encodeAsHTML()}"/>
+				</td>
+			</tr>
+
+			<tr class="prop">
+				<td valign="top" class="name"><label for="description">Description:</label></td>
+				<td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
+					<input type="text" id="description" name="description" value="${authority?.description?.encodeAsHTML()}"/>
+				</td>
+			</tr>
+		</tbody>
+		</table>
+		</div>
+
+		<div class="buttons">
+			<span class="button"><input class="save" type="submit" value="Create" /></span>
+		</div>
+		</g:form>
+	</div>
+</body>
Index: branches/TaskRewrite/src/grails-app/views/authority/edit.gsp
===================================================================
--- branches/TaskRewrite/src/grails-app/views/authority/edit.gsp	(revision 59)
+++ branches/TaskRewrite/src/grails-app/views/authority/edit.gsp	(revision 59)
@@ -0,0 +1,69 @@
+<head>
+	<meta name="layout" content="main" />
+	<title>Edit Authority</title>
+</head>
+
+<body>
+
+	<div class="nav">
+		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+	</div>
+
+	<div class="body">
+		<h1>Edit Authority</h1>
+		<g:if test="${flash.message}">
+		<div class="message">${flash.message}</div>
+		</g:if>
+		<g:hasErrors bean="${authority}">
+		<div class="errors">
+			<g:renderErrors bean="${authority}" as="list" />
+		</div>
+		</g:hasErrors>
+		<div class="prop">
+			<span class="name">ID:</span>
+			<span class="value">${authority.id}</span>
+		</div>
+		<g:form>
+			<input type="hidden" name="id" value="${authority.id}" />
+			<input type="hidden" name="version" value="${authority.version}" />
+			<div class="dialog">
+			<table>
+			<tbody>
+				<tr class="prop">
+					<td valign="top" class="name"><label for="authority">Authority Name:</label></td>
+					<td valign="top" class="value ${hasErrors(bean:authority,field:'authority','errors')}">
+						<input type="text" id="authority" name="authority" value="${authority.authority?.encodeAsHTML()}"/>
+					</td>
+				</tr>
+
+				<tr class="prop">
+					<td valign="top" class="name"><label for="description">Description:</label></td>
+					<td valign="top" class="value ${hasErrors(bean:authority,field:'description','errors')}">
+						<input type="text" id="description" name="description" value="${authority.description?.encodeAsHTML()}"/>
+					</td>
+				</tr>
+
+				<tr class="prop">
+					<td valign="top" class="name"><label for="persons">Persons:</label></td>
+					<td valign="top" class="value ${hasErrors(bean:authority,field:'persons','errors')}">
+						<ul>
+						<g:each var="p" in="${authority.persons?}">
+							<li>${p}</li>
+						</g:each>
+						</ul>
+					</td>
+				</tr>
+			</tbody>
+			</table>
+			</div>
+
+			<div class="buttons">
+				<span class="button"><g:actionSubmit class="save" value="Update" /></span>
+				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+			</div>
+
+		</g:form>
+	</div>
+</body>
Index: branches/TaskRewrite/src/grails-app/views/authority/list.gsp
===================================================================
--- branches/TaskRewrite/src/grails-app/views/authority/list.gsp	(revision 59)
+++ branches/TaskRewrite/src/grails-app/views/authority/list.gsp	(revision 59)
@@ -0,0 +1,49 @@
+<head>
+	<meta name="layout" content="main" />
+	<title>Authority List</title>
+</head>
+
+<body>
+
+	<div class="nav">
+		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+	</div>
+
+	<div class="body">
+		<h1>Authority List</h1>
+		<g:if test="${flash.message}">
+		<div class="message">${flash.message}</div>
+		</g:if>
+		<div class="list">
+			<table>
+			<thead>
+				<tr>
+					<g:sortableColumn property="id" title="ID" />
+					<g:sortableColumn property="authority" title="Authority Name" />
+					<g:sortableColumn property="description" title="Description" />
+					<th>&nbsp;</th>
+				</tr>
+			</thead>
+			<tbody>
+			<g:each in="${authorityList}" status="i" var="authority">
+				<tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
+					<td>${authority.id}</td>
+					<td>${authority.authority?.encodeAsHTML()}</td>
+					<td>${authority.description?.encodeAsHTML()}</td>
+					<td class="actionButtons">
+						<span class="actionButton">
+							<g:link action="show" id="${authority.id}">Show</g:link>
+						</span>
+					</td>
+				</tr>
+			</g:each>
+			</tbody>
+			</table>
+		</div>
+
+		<div class="paginateButtons">
+			<g:paginate total="${Authority.count()}" />
+		</div>
+	</div>
+</body>
Index: branches/TaskRewrite/src/grails-app/views/authority/show.gsp
===================================================================
--- branches/TaskRewrite/src/grails-app/views/authority/show.gsp	(revision 59)
+++ branches/TaskRewrite/src/grails-app/views/authority/show.gsp	(revision 59)
@@ -0,0 +1,57 @@
+<head>
+	<meta name="layout" content="main" />
+	<title>Show Authority</title>
+</head>
+
+<body>
+
+	<div class="nav">
+		<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+		<span class="menuButton"><g:link class="list" action="list">Authority List</g:link></span>
+		<span class="menuButton"><g:link class="create" action="create">New Authority</g:link></span>
+	</div>
+
+	<div class="body">
+		<h1>Show Authority</h1>
+		<g:if test="${flash.message}">
+		<div class="message">${flash.message}</div>
+		</g:if>
+		<div class="dialog">
+			<table>
+			<tbody>
+
+				<tr class="prop">
+					<td valign="top" class="name">ID:</td>
+					<td valign="top" class="value">${authority.id}</td>
+				</tr>
+
+				<tr class="prop">
+					<td valign="top" class="name">Authority Name:</td>
+					<td valign="top" class="value">${authority.authority}</td>
+				</tr>
+
+				<tr class="prop">
+					<td valign="top" class="name">Description:</td>
+					<td valign="top" class="value">${authority.description}</td>
+				</tr>
+
+				<tr class="prop">
+					<td valign="top" class="name">Persons:</td>
+					<td valign="top" class="value">${authority.persons}</td>
+				</tr>
+
+			</tbody>
+			</table>
+		</div>
+
+		<div class="buttons">
+			<g:form>
+				<input type="hidden" name="id" value="${authority?.id}" />
+				<span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
+				<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
+			</g:form>
+		</div>
+
+	</div>
+
+</body>
