]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/shared-instance/instance-features-table.component.html
Move zxx to its own group in select-languages component (#4664)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-instance / instance-features-table.component.html
index 83440e87cef3d3b25a1ba043b563fefcae747f11..0d4e77b7382feac46222658dcb4966e8784d46c5 100644 (file)
         <my-feature-boolean [value]="serverConfig.search.remoteUri.users"></my-feature-boolean>
       </td>
     </tr>
+
+    <tr>
+      <th i18n class="label" colspan="2">Plugins & Themes</th>
+    </tr>
+
+    <tr>
+      <th i18n class="sub-label" scope="row">Available themes</th>
+      <td>
+        <span class="theme" *ngFor="let theme of serverConfig.theme.registered">
+          {{ theme.name }}
+        </span>
+      </td>
+    </tr>
+
+    <tr>
+      <th i18n class="sub-label" scope="row">Plugins enabled</th>
+      <td>
+        <span class="plugin" *ngFor="let plugin of serverConfig.plugin.registered">
+          {{ plugin.name }}
+        </span>
+      </td>
+    </tr>
   </table>
 </div>