diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-12 01:28:54 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-12 01:28:54 +0100 |
commit | 5024abc812b20dfcf16823dcc20992763afb6681 (patch) | |
tree | 34fb28e7634fe546713cb303dcbfd496efc54d6e /templates/dataissues.html | |
parent | dbd9b1a0958e11744fc5653181db8d8f7e5a2fb3 (diff) | |
download | troggle-5024abc812b20dfcf16823dcc20992763afb6681.tar.gz troggle-5024abc812b20dfcf16823dcc20992763afb6681.tar.bz2 troggle-5024abc812b20dfcf16823dcc20992763afb6681.zip |
add url field to DataIssue
Diffstat (limited to 'templates/dataissues.html')
-rw-r--r-- | templates/dataissues.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/dataissues.html b/templates/dataissues.html index 7c518a0..46538a0 100644 --- a/templates/dataissues.html +++ b/templates/dataissues.html @@ -6,7 +6,7 @@ <h1>Loading data from files: Issues arising that need attention</h1> <p> -This is work in progress (April 2021). +This is work in progress (April 2021).The URL links to the offending objects are not enabled yet. <style> tr { text-align:center; font-family: Tahoma,'Trebuchet MS','Lucida Grande',Verdana, Arial, Helvetica, Sans-Serif; @@ -25,7 +25,7 @@ td { background : lightblue; } <tr> {% endifchanged %} <td bgcolor={{mycolor}}>{{di.parser}}</td> - <td bgcolor={{mycolor}} style="text-align:left">{{di.message}}</td> + <td bgcolor={{mycolor}} style="text-align:left"><a href="{{di.url}}">{{di.message}}</a></td> </tr> {% endfor %} </font> |