aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-watch/video-watch.component.html
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-04-23 21:57:08 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-04-26 21:23:19 +0200
commit8ce9e815c8212647d702b94ca8633943d1aa663a (patch)
tree76bec30e63d3d8bbc34425d7bd28b7b53052f5ac /client/src/app/videos/video-watch/video-watch.component.html
parentb362290d40a93cf0f9746f9aeae4fe5457157a81 (diff)
downloadPeerTube-8ce9e815c8212647d702b94ca8633943d1aa663a.tar.gz
PeerTube-8ce9e815c8212647d702b94ca8633943d1aa663a.tar.zst
PeerTube-8ce9e815c8212647d702b94ca8633943d1aa663a.zip
Client: display video tags
Diffstat (limited to 'client/src/app/videos/video-watch/video-watch.component.html')
-rw-r--r--client/src/app/videos/video-watch/video-watch.component.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/src/app/videos/video-watch/video-watch.component.html b/client/src/app/videos/video-watch/video-watch.component.html
index 059465d65..124a3ba8b 100644
--- a/client/src/app/videos/video-watch/video-watch.component.html
+++ b/client/src/app/videos/video-watch/video-watch.component.html
@@ -157,6 +157,19 @@
157 {{ video.languageLabel }} 157 {{ video.languageLabel }}
158 </span> 158 </span>
159 </div> 159 </div>
160
161 <div class="video-details-attribute">
162 <span class="video-details-attribute-label">
163 Tags:
164 </span>
165
166 <div class="video-details-tags">
167 <a *ngFor="let tag of video.tags" [routerLink]="['/videos/list', { field: 'tags', search: tag }]" class="label label-primary">
168 {{ tag }}
169 </a>
170 </div>
171 </div>
172
160 </div> 173 </div>
161 </div> 174 </div>
162</div> 175</div>