Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
B
Backend Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SpinShare
Backend Server
Commits
7f25ead5
Commit
7f25ead5
authored
Oct 14, 2020
by
Andreas Heimann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed duplicates
parent
8da357d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
templates/playlist/detail.html.twig
templates/playlist/detail.html.twig
+8
-2
No files found.
templates/playlist/detail.html.twig
View file @
7f25ead5
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<div
class=
"playlist-content"
>
<div
class=
"playlist-content"
>
<div
class=
"playlist-detail"
>
<div
class=
"playlist-detail"
>
<div
class=
"playlist-description"
>
<div
class=
"playlist-description"
>
{{
playlist.description
}}
{{
playlist.description
|
nl2br
}}
</div>
</div>
{%
if
not
playlist.isOfficial
%}
{%
if
not
playlist.isOfficial
%}
<div
class=
"playlist-uploader"
>
<div
class=
"playlist-uploader"
>
...
@@ -46,7 +46,13 @@
...
@@ -46,7 +46,13 @@
<div
class=
"playlist-charters"
>
<div
class=
"playlist-charters"
>
<div
class=
"label"
>
With Charts by
</div>
<div
class=
"label"
>
With Charts by
</div>
<div
class=
"charters"
>
<div
class=
"charters"
>
{%
for
song
in
playlist.songs
%}{{
song.charter
}}
,
 
{%
endfor
%}
{%
set
charters
=
[]
%}
{%
for
song
in
playlist.songs
%}
{%
if
song.charter
not
in
charters
%}
{{
song.charter
}}
,
 
{%
set
charters
=
charters
|
merge
([
song.charter
])
%}
{%
endif
%}
{%
endfor
%}
</div>
</div>
</div>
</div>
{%
endif
%}
{%
endif
%}
...
...
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