Changeset 442 for trunk/grails-app/views/personAffiliation
- Timestamp:
- May 19, 2010, 6:12:42 PM (13 years ago)
- Location:
- trunk/grails-app/views/personAffiliation
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/personAffiliation/create.gsp
r379 r442 26 26 <tr class="prop"> 27 27 <td valign="top" class="name"> 28 <label for="name"><g:message code="personAffiliation. name.label" default="Name" /></label>28 <label for="name"><g:message code="personAffiliation.institute.label" default="Institute" /></label> 29 29 </td> 30 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: ' name', 'errors')}">31 <g:textField name=" name" value="${personAffiliationInstance?.name}" />30 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: 'institute', 'errors')}"> 31 <g:textField name="institute" value="${personAffiliationInstance?.institute}" /> 32 32 </td> 33 33 </tr> 34 34 35 <tr class="prop"> 36 <td valign="top" class="name"> 37 <label for="name"><g:message code="personAffiliation.department.label" default="Department" /></label> 38 </td> 39 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: 'department', 'errors')}"> 40 <g:textField name="department" value="${personAffiliationInstance?.department}" /> 41 </td> 42 </tr> 35 43 </tbody> 36 44 </table> -
trunk/grails-app/views/personAffiliation/edit.gsp
r379 r442 28 28 <tr class="prop"> 29 29 <td valign="top" class="name"> 30 <label for="name"><g:message code="personAffiliation. name.label" default="Name" /></label>30 <label for="name"><g:message code="personAffiliation.institute.label" default="Institute" /></label> 31 31 </td> 32 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: ' name', 'errors')}">33 <g:textField name=" name" value="${personAffiliationInstance?.name}" />32 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: 'institute', 'errors')}"> 33 <g:textField name="institute" value="${personAffiliationInstance?.institute}" /> 34 34 </td> 35 35 </tr> 36 36 <tr class="prop"> 37 <td valign="top" class="name"> 38 <label for="name"><g:message code="personAffiliation.department.label" default="Department" /></label> 39 </td> 40 <td valign="top" class="value ${hasErrors(bean: personAffiliationInstance, field: 'department', 'errors')}"> 41 <g:textField name="department" value="${personAffiliationInstance?.department}" /> 42 </td> 43 </tr> 37 44 </tbody> 38 45 </table> -
trunk/grails-app/views/personAffiliation/list.gsp
r382 r442 19 19 <tr> 20 20 21 <g:sortableColumn property="name" title="${message(code: 'personAffiliation.name.label', default: 'Name')}" /> 21 <g:sortableColumn property="institute" title="${message(code: 'personAffiliation.institute.label', default: 'Institute')}" /> 22 <g:sortableColumn property="department" title="${message(code: 'personAffiliation.department.label', default: 'Department')}" /> 22 23 23 24 </tr> … … 27 28 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 28 29 29 <td><g:link action="show" id="${personAffiliationInstance.id}">${fieldValue(bean: personAffiliationInstance, field: " name")}</g:link></td>30 30 <td><g:link action="show" id="${personAffiliationInstance.id}">${fieldValue(bean: personAffiliationInstance, field: "institute")}</g:link></td> 31 <td>${fieldValue(bean: personAffiliationInstance, field: "department")}</td> 31 32 </tr> 32 33 </g:each> -
trunk/grails-app/views/personAffiliation/show.gsp
r379 r442 19 19 20 20 <tr class="prop"> 21 <td valign="top" class="name"><g:message code="personAffiliation. name.label" default="Name" /></td>21 <td valign="top" class="name"><g:message code="personAffiliation.institute.label" default="Institute" /></td> 22 22 23 <td valign="top" class="value">${fieldValue(bean: personAffiliationInstance, field: " name")}</td>23 <td valign="top" class="value">${fieldValue(bean: personAffiliationInstance, field: "institute")}</td> 24 24 25 25 </tr> 26 26 27 <tr class="prop"> 28 <td valign="top" class="name"><g:message code="personAffiliation.department.label" default="Department" /></td> 29 30 <td valign="top" class="value">${fieldValue(bean: personAffiliationInstance, field: "department")}</td> 31 32 </tr> 27 33 </tbody> 28 34 </table>
Note: See TracChangeset
for help on using the changeset viewer.