diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-03-27 21:11:37 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-03-27 21:11:37 +0200 |
commit | d07137b90b2b2b0c1e93a6f0e7bf8719b133027c (patch) | |
tree | 0bb642609819bc1c8ff2761c848f8db3a9934d88 /client/src/app/videos/video-watch | |
parent | 6f0c39e2de400685b7baf8340b9e132f2659365a (diff) | |
download | PeerTube-d07137b90b2b2b0c1e93a6f0e7bf8719b133027c.tar.gz PeerTube-d07137b90b2b2b0c1e93a6f0e7bf8719b133027c.tar.zst PeerTube-d07137b90b2b2b0c1e93a6f0e7bf8719b133027c.zip |
Client: add support for video licences
Diffstat (limited to 'client/src/app/videos/video-watch')
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.html | 7 | ||||
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.scss | 4 |
2 files changed, 11 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 e754d69e5..897561c14 100644 --- a/client/src/app/videos/video-watch/video-watch.component.html +++ b/client/src/app/videos/video-watch/video-watch.component.html | |||
@@ -114,6 +114,13 @@ | |||
114 | </div> | 114 | </div> |
115 | </div> | 115 | </div> |
116 | 116 | ||
117 | <div id="video-licence" class="row"> | ||
118 | <div class="col-md-12"> | ||
119 | <span id="licence-label">Licence:</span> | ||
120 | {{ video.licenceLabel }} | ||
121 | </div> | ||
122 | </div> | ||
123 | |||
117 | <div id="video-description" class="row"> | 124 | <div id="video-description" class="row"> |
118 | <div class="col-md-12"> | 125 | <div class="col-md-12"> |
119 | <div id="description-label">Description</div> | 126 | <div id="description-label">Description</div> |
diff --git a/client/src/app/videos/video-watch/video-watch.component.scss b/client/src/app/videos/video-watch/video-watch.component.scss index 799e37b5d..bf989e78b 100644 --- a/client/src/app/videos/video-watch/video-watch.component.scss +++ b/client/src/app/videos/video-watch/video-watch.component.scss | |||
@@ -119,6 +119,10 @@ | |||
119 | } | 119 | } |
120 | } | 120 | } |
121 | 121 | ||
122 | #video-licence #licence-label { | ||
123 | font-weight: bold; | ||
124 | } | ||
125 | |||
122 | #video-description { | 126 | #video-description { |
123 | margin-top: 10px; | 127 | margin-top: 10px; |
124 | 128 | ||