]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-instance/about-instance.component.html
Merge branch 'release/v1.2.0'
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / about-instance.component.html
CommitLineData
56af5222
C
1<div class="row">
2 <div class="col-md-12 col-xl-6">
d3e56c0c
C
3 <div class="about-instance-title">
4 <div i18n>About {{ instanceName }} instance</div>
5
6 <div *ngIf="isContactFormEnabled" (click)="openContactModal()" i18n role="button" class="contact-admin">Contact administrator</div>
56af5222 7 </div>
78f912ed 8
56af5222
C
9 <div class="short-description">
10 <div>{{ shortDescription }}</div>
11 </div>
78f912ed 12
56af5222
C
13 <div class="description">
14 <div i18n class="section-title">Description</div>
78f912ed 15
56af5222
C
16 <div [innerHTML]="descriptionHTML"></div>
17 </div>
78f912ed 18
56af5222
C
19 <div class="terms" id="terms-section">
20 <div i18n class="section-title">Terms</div>
78f912ed 21
56af5222
C
22 <div [innerHTML]="termsHTML"></div>
23 </div>
24
25 <div class="signup">
26 <div i18n class="section-title">Signup</div>
78f912ed 27
56af5222
C
28 <div *ngIf="isSignupAllowed">
29 <ng-container i18n>User registration is allowed and</ng-container>
78f912ed 30
56af5222
C
31 <ng-container i18n *ngIf="userVideoQuota !== -1">
32 this instance provides a baseline quota of {{ userVideoQuota | bytes: 0 }} space for the videos of its users.
33 </ng-container>
78f912ed 34
56af5222
C
35 <ng-container i18n *ngIf="userVideoQuota === -1">
36 this instance provides unlimited space for the videos of its users.
37 </ng-container>
38 </div>
78f912ed 39
56af5222
C
40 <div i18n *ngIf="isSignupAllowed === false">
41 User registration is currently not allowed.
42 </div>
43 </div>
78f912ed
C
44 </div>
45
56af5222
C
46 <div class="col-md-12 col-xl-6">
47 <label>Features found on this instance</label>
48 <my-instance-features-table></my-instance-features-table>
78f912ed 49 </div>
56af5222 50</div>
d3e56c0c
C
51
52<my-contact-admin-modal #contactAdminModal></my-contact-admin-modal>