Changeset 6269
- Timestamp:
- 06/01/10 14:56:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI01-discovery/trunk/OAIInfoEditor/oai_info_editor/templates/home.html
r5466 r6269 28 28 </div> 29 29 <h2 py:if="c.providerInfos"> 30 Select the provider info data to view/edit 31 <table> 30 Select the provider info data to view/edit 31 <table border="2" align="center"> 32 <tr> 33 <td colspan="2" align="center" border="0"> Data Provider </td> 34 <td align="center" border="0"> Metadata Format Provided </td> 35 36 </tr> 32 37 <tr> 33 38 <td py:if="c.user.isAdmin"> 34 39 <a href="${h.url_for('viewProviderInfo', providerName = constants.ALL_PROVIDER_IDS) + ADMIN_PARAMETER}">All data</a> 35 </td> 40 </td> 36 41 </tr> 37 42 <tr py:for="pi in c.providerInfos"> … … 42 47 ?> 43 48 <td> 44 <a href="$viewLink">${Markup(pi. name)}</a>49 <a href="$viewLink">${Markup(pi.dataCentreName)}</a> 45 50 </td> 51 <td align="center"> 52 ${Markup(pi.name)} 53 </td> 54 <td align="center"> 55 ${Markup(pi.dataFormat)} 56 </td> 57 <td> 58 <input type="button" value="view/edit" title="Button to click to edit details" onclick="location.href='$viewLink'"/> 59 </td> 46 60 </tr> 47 61 </table>
Note: See TracChangeset
for help on using the changeset viewer.