Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!1233
Resolve "Links in object column of data check table is broken"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Links in object column of data check table is broken"
818-links-in-object-column-of-data-check-table-is-broken
into
release-3.0
Overview
0
Commits
5
Pipelines
2
Changes
3
Merged
Jonathan Weth
requested to merge
818-links-in-object-column-of-data-check-table-is-broken
into
release-3.0
1 year ago
Overview
0
Commits
5
Pipelines
2
Changes
3
Expand
Closes
#818 (closed)
0
0
Merge request reports
Compare
release-3.0
version 1
6dabf0dd
1 year ago
release-3.0 (base)
and
latest version
latest version
14b33a64
5 commits,
1 year ago
version 1
6dabf0dd
5 commits,
1 year ago
3 files
+
24
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
aleksis/core/templates/core/data_check/list.html
+
4
−
1
Options
@@ -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