Skip to content
Snippets Groups Projects

Resolve "Links in object column of data check table is broken"

3 files
+ 24
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -2,6 +2,7 @@
{% extends "core/base.html" %}
{% load data_helpers %}
{% load html_helpers %}
{% load i18n %}
{% load render_table from django_tables2 %}
@@ -59,9 +60,11 @@
<td>{{ result.related_object }}</td>
<td>{{ result.related_check.problem_name }}</td>
<td>
<a class="btn-flat waves-effect waves-light" href="{{ result.related_object.get_absolute_url }}">
{% if result.related_object.get_absolute_url %}
<a class="btn-flat waves-effect waves-light" href="{{ result.related_object.get_absolute_url|remove_prefix:"/django/" }}" target="_blank">
{% trans "Show object" %}
</a>
{% endif %}
</td>
<td>
{% for option_name, option in result.related_check.solve_options.items %}
Loading