]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/video-watch/video-watch.component.html
Format video blacklist
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-watch / video-watch.component.html
index 989de0de476f51d23f397f04b93b7e1ff557543b..5e758401eb52b0cc3ef64243b74be7d06d4a2a27 100644 (file)
 </div>
 
 <div class="row">
-  <div class="col-md-12">
-    <!-- We need the video container for videojs so we just hide it -->
-    <div [hidden]="videoNotFound" class="embed-responsive embed-responsive-19by9">
-       <video id="video-container" class="video-js vjs-default-skin vjs-big-play-centered"></video>
-    </div>
-
-    <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div>
+  <!-- We need the video container for videojs so we just hide it -->
+  <div [hidden]="videoNotFound" class="embed-responsive embed-responsive-19by9">
+     <video id="video-container" class="video-js vjs-default-skin vjs-big-play-centered"></video>
   </div>
+
+  <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div>
 </div>
 
 <div id="torrent-info" class="row">
@@ -32,7 +30,7 @@
 
 <div *ngIf="video !== null" id="video-info">
   <div class="row video-name-views">
-    <div id="video-name" class="col-md-8">
+    <div class="col-md-8 video-name">
       {{ video.name }}
     </div>
 
             </a>
           </li>
 
-         <li *ngIf="isVideoRemovable()" role="menuitem">
-           <a class="dropdown-item" title="Delete this video" href="#" (click)="removeVideo($event)">
-             <span class="glyphicon glyphicon-remove"></span> Delete
-           </a>
-         </li>
-
-         <li *ngIf="isVideoBlacklistable()" role="menuitem">
-           <a class="dropdown-item" title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
-             <span class="glyphicon glyphicon-eye-close"></span> Blacklist
-           </a>
-         </li>
+          <li *ngIf="isVideoRemovable()" role="menuitem">
+            <a class="dropdown-item" title="Delete this video" href="#" (click)="removeVideo($event)">
+              <span class="glyphicon glyphicon-remove"></span> Delete
+            </a>
+          </li>
+
+          <li *ngIf="isVideoBlacklistable()" role="menuitem">
+            <a class="dropdown-item" title="Blacklist this video" href="#" (click)="blacklistVideo($event)">
+              <span class="glyphicon glyphicon-eye-close"></span> Blacklist
+            </a>
+          </li>
         </ul>
       </div>
     </div>
           {{ video.languageLabel }}
         </span>
       </div>
+
+      <div class="video-details-attribute">
+        <span class="video-details-attribute-label">
+          Tags:
+        </span>
+
+        <div class="video-details-tags">
+          <a *ngFor="let tag of video.tags" [routerLink]="['/videos/list', { field: 'tags', search: tag }]" class="label label-primary">
+            {{ tag }}
+          </a>
+        </div>
+      </div>
+
     </div>
   </div>
 </div>