diff options
-rw-r--r-- | uploader/templates/phenotypes/job-status.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/uploader/templates/phenotypes/job-status.html b/uploader/templates/phenotypes/job-status.html index 8ba3edf..c810c6f 100644 --- a/uploader/templates/phenotypes/job-status.html +++ b/uploader/templates/phenotypes/job-status.html @@ -54,6 +54,7 @@ <th>File</th> <th>Row</th> <th>Column</th> + <th>Value</th> <th>Message</th> </thead> @@ -63,8 +64,13 @@ <td>{{error.filename}}</td> <td>{{error.rowtitle}}</td> <td>{{error.coltitle}}</td> - <td>{{error.message}}</td> + <td>{%if error.cellvalue | length > 25%} + {{error.cellvalue[0:24]}}… + {%else%} + {{error.cellvalue}} + {%endif%} </td> + <td>{{error.message}}</td> </tr> {%endfor%} </tbody> |