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
!686
Resolve "Change material icon set"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Change material icon set"
258-change-material-icon-set
into
master
Overview
2
Commits
41
Pipelines
10
Changes
1
All threads resolved!
Hide all comments
Merged
Jonathan Weth
requested to merge
258-change-material-icon-set
into
master
3 years ago
Overview
2
Commits
41
Pipelines
10
Changes
1
All threads resolved!
Hide all comments
Expand
Closes
#258 (closed)
Edited
3 years ago
by
Nik | Klampfradler
0
0
Merge request reports
Viewing commit
7102a3a3
Prev
Next
Show latest version
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7102a3a3
Change icon set of data checks
· 7102a3a3
Julian
authored
3 years ago
aleksis/core/templates/core/data_check/list.html
+
5
−
5
Options
@@ -11,14 +11,14 @@
{% block content %}
<a
class=
"btn green waves-effect waves-light"
href=
"{% url "
data_check_run
"
%}"
>
<i
class=
"material-icons left
"
>
refresh
</i>
<i
class=
"material-icons left
iconify"
data-icon=
"mdi:
refresh
"
>
</i>
{% trans "Check data again" %}
</a>
{% if results %}
<div
class=
"card"
>
<div
class=
"card-content"
>
<i
class=
"material-icons left medium red-text
"
>
warning
</i>
<i
class=
"material-icons left medium red-text
iconify"
data-icon=
"mdi:alert-outline"
>
</i>
<span
class=
"card-title"
>
{% trans "The system detected some problems with your data." %}
</span>
<p>
{% blocktrans %}Please go through all data and check whether some extra action is
needed.{% endblocktrans %}
</p>
@@ -27,7 +27,7 @@
{% else %}
<div
class=
"card"
>
<div
class=
"card-content"
>
<i
class=
"material-icons left medium green-text
"
>
check
_
circle
</i>
<i
class=
"material-icons left medium green-text
iconify"
data-icon=
"mdi:
check
-
circle
-outline"
>
</i>
<span
class=
"card-title"
>
{% trans "Everything is fine." %}
</span>
<p>
{% blocktrans %}The system hasn't detected any problems with your data.{% endblocktrans %}
</p>
</div>
@@ -86,7 +86,7 @@
<div
class=
"card-title"
>
{% trans "Registered checks" %}
</div>
<div
class=
"alert primary"
>
<div>
<i
class=
"material-icons left
"
>
info
</i>
<i
class=
"material-icons left
iconify"
data-icon=
"mdi:information-outline"
>
</i>
{% blocktrans %}
The system will check for the following problems:
{% endblocktrans %}
@@ -95,7 +95,7 @@
<ul
class=
"collection"
>
{% for check in registered_checks %}
<li
class=
"collection-item"
>
<i
class=
"material-icons left
"
>
check
</i>
<i
class=
"material-icons left
iconify"
data-icon=
"mdi:
check
"
>
</i>
{{ check.verbose_name }}
</li>
{% endfor %}
Loading