Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Validata
validata-ui
Commits
8e52e1e0
Commit
8e52e1e0
authored
Sep 28, 2018
by
Pierre Dittgen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding tooltips for body errors
parent
041266fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
validata_ui_next/templates/validation_report.html
validata_ui_next/templates/validation_report.html
+6
-1
No files found.
validata_ui_next/templates/validation_report.html
View file @
8e52e1e0
...
...
@@ -74,7 +74,7 @@
<tr>
{% for d in source_data.data_rows[err['row-number'] - 2] %}
{% if loop.index == err['column-number'] %}
<td
class=
"table-danger"
>
{{ d }}
</td>
<td
class=
"table-danger"
data-toggle=
"tooltip"
title=
"{{ err.message }}"
>
{{ d }}
</td>
{% else %}
<td>
{{ d }}
</td>
{% endif %}
...
...
@@ -100,4 +100,9 @@
{% endif %}
{% endblock %}
{% block footer %}
<script>
$
(
function
()
{
$
(
'
[data-toggle="tooltip"]
'
).
tooltip
()
})
</script>
{% endblock %}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment