mirror of
https://github.com/zulip/zulip.git
synced 2025-11-18 12:54:58 +00:00
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <anders@zulip.com>
21 lines
913 B
Handlebars
21 lines
913 B
Handlebars
<div id="organization-auth-settings" class="settings-section" data-name="auth-methods">
|
|
{{#unless is_owner}}
|
|
<div class='tip'>{{t "Only organization owners can edit these settings."}}</div>
|
|
{{/unless}}
|
|
<form class="admin-realm-form org-authentications-form">
|
|
<div id="org-auth_settings" class="admin-table-wrapper settings-subsection-parent">
|
|
<div class ="subsection-header">
|
|
<h3>{{t "Authentication methods" }}</h3>
|
|
{{> settings_save_discard_widget section_name="auth_settings" }}
|
|
</div>
|
|
|
|
<div>
|
|
<p>{{t "Configure the authentication methods for your organization."}}</p>
|
|
<div id="id_realm_authentication_methods">
|
|
{{! Empty div is intentional, it will get populated by a dedicated template }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|