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
Commits
ffba0f82
Verified
Commit
ffba0f82
authored
4 years ago
by
Tom Teichler
Browse files
Options
Downloads
Patches
Plain Diff
Fix css classes in tables
parent
53d82e48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!275
Resolve "Fix CSS classes in tables"
Pipeline
#2182
passed
4 years ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aleksis/core/tables.py
+2
-2
2 additions, 2 deletions
aleksis/core/tables.py
aleksis/core/templates/core/person_full.html
+1
-1
1 addition, 1 deletion
aleksis/core/templates/core/person_full.html
with
3 additions
and
3 deletions
aleksis/core/tables.py
+
2
−
2
View file @
ffba0f82
...
...
@@ -8,7 +8,7 @@ class PersonsTable(tables.Table):
"""
Table to list persons.
"""
class
Meta
:
attrs
=
{
"
class
"
:
"
table table-striped table-bordered table-hover table-responsive-xl
"
}
attrs
=
{
"
class
"
:
"
responsive-table highlight
"
}
first_name
=
tables
.
LinkColumn
(
"
person_by_id
"
,
args
=
[
A
(
"
id
"
)])
last_name
=
tables
.
LinkColumn
(
"
person_by_id
"
,
args
=
[
A
(
"
id
"
)])
...
...
@@ -18,7 +18,7 @@ class GroupsTable(tables.Table):
"""
Table to list groups.
"""
class
Meta
:
attrs
=
{
"
class
"
:
"
table table-striped table-bordered table-hover table-responsive-xl
"
}
attrs
=
{
"
class
"
:
"
responsive-table highlight
"
}
name
=
tables
.
LinkColumn
(
"
group_by_id
"
,
args
=
[
A
(
"
id
"
)])
short_name
=
tables
.
LinkColumn
(
"
group_by_id
"
,
args
=
[
A
(
"
id
"
)])
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/templates/core/person_full.html
+
1
−
1
View file @
ffba0f82
...
...
@@ -44,7 +44,7 @@
{% endif %}
</div>
<div
class=
"col s12 m8"
>
<table
class=
"
table table-
responsive-
xl
table
-border table-striped
"
>
<table
class=
"responsive-table
highlight
"
>
<tr>
<td
rowspan=
"6"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment