Skip to content
Snippets Groups Projects
Commit be29719e authored by jkerdreu's avatar jkerdreu
Browse files

Fix URL




git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/trunk@2238 b32b6428-25c9-4566-ad07-03861ab6144f
parent a6203959
No related branches found
No related tags found
No related merge requests found
<%inherit file="base.mako"/>
<script src="/static/js/sorttable.js"></script>
<script src="/dash/static/js/sorttable.js"></script>
<!-- https://www.w3schools.com/howto/howto_js_filter_table.asp -->
......@@ -44,9 +44,9 @@ function filterFunc(input_id,col) {
<tr><th width=20%>Address</th><th width=15%>devtype</th><th width=15%>Name</th><th width=15%>Info</th><th width=35%>Attributes</th></tr>
% for dev in devs:
<tr>
<td><a href="/generic/${dev.address}">${dev.address}</a></td>
<td><a href="./generic/${dev.address}">${dev.address}</a></td>
<td>${dev.devtype}</td>
<td><a href="/edit_metadata/${dev.address}">➠</a> ${dev.display_name}</td>
<td><a href="./edit_metadata/${dev.address}">➠</a> ${dev.display_name}</td>
%if 'info' in dev.description.keys():
<td>${dev.description['info']}</td>
%else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment