Last change
on this file since 556 was
556,
checked in by roberth, 12 years ago
|
Improved the TemplateEditor? again: templates can be created and removed and some checks were built in to ensure that the same fields in different templates point to the same TemplateField? object.
|
File size:
1.1 KB
|
Line | |
---|
1 | <g:set var="numUses" value="${templateField.numUses()}" /> |
---|
2 | <span class="listButtons"> |
---|
3 | <img class="disabled" src="${createLinkTo( dir: 'images', file: 'icons/famfamfam/application_edit.png')}" alt="Editing not possible. Field is used in ${numUses} templates." title="Editing not possible. Field is used in ${numUses} templates."> |
---|
4 | <img class="disabled" src="${createLinkTo( dir: 'images', file: 'icons/famfamfam/delete.png')}" alt="Deleting this field is not possible. Field is used in ${numUses} templates." title="Deleting this field is not possible. Field is used in ${numUses} templates."> |
---|
5 | <img onClick="addTemplateField( ${templateField.id} ); moveFieldListItem( ${templateField.id}, '#selectedTemplateFields' );" src="${createLinkTo( dir: 'images', file: 'icons/famfamfam/add.png')}" alt="Add field to template" title="Add field to template"> |
---|
6 | </span> |
---|
7 | |
---|
8 | <b>${templateField.name}</b> |
---|
9 | (<g:if test="${templateField.unit}">${templateField.unit}, </g:if><g:render template="elements/${templateField.type.toString().toLowerCase().replaceAll(/ /,'_')}" model="[templateField: templateField]"/>) |
---|
10 | |
---|
11 | |
---|
Note: See
TracBrowser
for help on using the repository browser.