Skip to content

Commit 2e7aa8e

Browse files
authored
Remove corporate templatetag (#593)
This templatetag isn't used at all Ref readthedocs/readthedocs-corporate#1993
1 parent fe1ecc4 commit 2e7aa8e

File tree

1 file changed

+8
-8
lines changed
  • readthedocsext/theme/templates/organizations/settings

1 file changed

+8
-8
lines changed

readthedocsext/theme/templates/organizations/settings/sso_edit.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{% extends "organizations/settings/base.html" %}
22

3-
{% load i18n %}
4-
{% load crispy_forms_tags %}
5-
6-
{% load corporate %}
7-
{% load ext_theme_tags %}
8-
{% load organizations %}
3+
{% load trans blocktrans from i18n %}
4+
{% load as_crispy_field from crispy_forms_tags %}
95

106
{% block title %}
117
{{ organization.name }} - {% trans "Authorization" %}
@@ -32,7 +28,9 @@
3228
{% if organization.ssointegration %}
3329
<div class="ui message">
3430
<div class="header">{% trans "Invite users into your organization" %}</div>
35-
<p>{% trans "You can invite people to join your organization by sending them this link:" %}</p>
31+
<p>
32+
{% trans "You can invite people to join your organization by sending them this link:" %}
33+
</p>
3634

3735
<div class="ui fluid action input">
3836
<input type="text"
@@ -112,7 +110,9 @@
112110
{% alter_field form.provider data_bind="valueInit: provider, value: provider" %}
113111
{{ form.provider | as_crispy_field }}
114112

115-
<div class="ko hidden" data-bind="css: { hidden: !use_domain() }">{{ form.domain | as_crispy_field }}</div>
113+
<div class="ko hidden" data-bind="css: { hidden: !use_domain() }">
114+
{{ form.domain | as_crispy_field }}
115+
</div>
116116

117117
<div class="ui warning message ko hidden"
118118
data-bind="css: { hidden: !show_warning() }">

0 commit comments

Comments
 (0)