Changeset 2225 for trunk/grails-app/views/userRegistration
- Timestamp:
- Apr 25, 2012, 10:42:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/userRegistration/profile.gsp
r2084 r2225 4 4 <meta name="layout" content="main"/> 5 5 <title>User profile</title> 6 <link rel="stylesheet" href="${resource(dir: 'css', file: 'tipTip.css')}"/> 7 <script type="text/javascript" src="${resource(dir: 'js', file: 'jquery.tipTip.minified.js')}"></script> 8 <script type="text/javascript"> 9 $(document).ready(function() { 10 $(".tooltip").tipTip(); 11 }); 12 </script> 6 13 </head> 7 14 … … 22 29 <td>${user.organization}</td> 23 30 </tr> 24 <sec:ifAllGranted roles="ROLE_ADMIN"> 31 <tr> 32 <td>API key</td> 33 <td valign="top" class="value"> 34 <g:textField disabled="disabled" name="secret" value="${user.apiKey}" style="width:250px" /> 35 <img src="${fam.icon(name: 'help')}" class="tooltip" title="in order to programmatically interface with gscf, you need the api key to communicate with the api. Refer to the api documentation at ${createLink(controller:'api')} for more information about how to use the api and the api key." /> 36 </td> 37 </tr> 38 <sec:ifAllGranted roles="ROLE_ADMIN"> 25 39 <tr> 26 40 <td>Administrator</td> … … 46 60 <tbody> 47 61 48 <tr class="prop"> 62 <tr class="prop"> 63 <td valign="top" class="name">API Key</td> 64 <td valign="top" class="value"> 65 <g:textField disabled="disabled" name="secret" value="${user.apiKey}" style="width:250px" /> 66 <img src="${fam.icon(name: 'help')}" class="tooltip" title="in order to programmatically interface with gscf, you need the api key to communicate with the api. Refer to the api documentation at ${createLink(controller:'api')} for more information about how to use the api and the api key." /> 67 </td> 68 </tr> 69 <tr class="prop"> 49 70 <td valign="top" class="name"> 50 71 <label for="username">Username</label>
Note: See TracChangeset
for help on using the changeset viewer.