diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-27 14:21:03 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-27 14:59:09 +0200 |
commit | 78f912ed5733028ec2bf10c06c19f75b07943be2 (patch) | |
tree | 4bf9692230deabc4e050e5a7de126b38901969e9 /client/src/app/+about/about-instance/about-instance.component.html | |
parent | 61b909b9bf849516f30dab2bf5977acfbbddc5c6 (diff) | |
download | PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.tar.gz PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.tar.zst PeerTube-78f912ed5733028ec2bf10c06c19f75b07943be2.zip |
Improve P2P & Privacy section
Diffstat (limited to 'client/src/app/+about/about-instance/about-instance.component.html')
-rw-r--r-- | client/src/app/+about/about-instance/about-instance.component.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/client/src/app/+about/about-instance/about-instance.component.html b/client/src/app/+about/about-instance/about-instance.component.html new file mode 100644 index 000000000..e433b0016 --- /dev/null +++ b/client/src/app/+about/about-instance/about-instance.component.html | |||
@@ -0,0 +1,39 @@ | |||
1 | <div i18n class="about-instance-title"> | ||
2 | About {{ instanceName }} instance | ||
3 | </div> | ||
4 | |||
5 | <div class="short-description"> | ||
6 | <div>{{ shortDescription }}</div> | ||
7 | </div> | ||
8 | |||
9 | <div class="description"> | ||
10 | <div i18n class="section-title">Description</div> | ||
11 | |||
12 | <div [innerHTML]="descriptionHTML"></div> | ||
13 | </div> | ||
14 | |||
15 | <div class="terms"> | ||
16 | <div i18n class="section-title">Terms</div> | ||
17 | |||
18 | <div [innerHTML]="termsHTML"></div> | ||
19 | </div> | ||
20 | |||
21 | <div class="signup"> | ||
22 | <div i18n class="section-title">Signup</div> | ||
23 | |||
24 | <div *ngIf="isSignupAllowed"> | ||
25 | <ng-container i18n>User registration is allowed and</ng-container> | ||
26 | |||
27 | <ng-container i18n *ngIf="userVideoQuota !== -1"> | ||
28 | this instance provides a baseline quota of {{ userVideoQuota | bytes: 0 }} space for the videos of its users. | ||
29 | </ng-container> | ||
30 | |||
31 | <ng-container i18n *ngIf="userVideoQuota === -1"> | ||
32 | this instance provides unlimited space for the videos of its users. | ||
33 | </ng-container> | ||
34 | </div> | ||
35 | |||
36 | <div i18n *ngIf="isSignupAllowed === false"> | ||
37 | User registration is currently not allowed. | ||
38 | </div> | ||
39 | </div> \ No newline at end of file | ||