mirror of https://github.com/zulip/zulip.git
billing: Add separate entry point for billing login pages.
We just exclude upgrade.ts from the imports to avoid page_params being imported which results in an error. s
This commit is contained in:
parent
5803d4afec
commit
949379581e
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% set PAGE_TITLE = "Authenticate server for Zulip plan management" %}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico_signup.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% block title %}
|
||||
{% if remote_server_hostname %}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico_signup.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% block title %}
|
||||
{% if remote_server_hostname %}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% block title %}
|
||||
<title>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% block title %}
|
||||
<title>{{ _("Deactivate server registration?") }} | Zulip</title>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "zerver/portico_signup.html" %}
|
||||
{% set entrypoint = "upgrade" %}
|
||||
{% set entrypoint = "billing_auth" %}
|
||||
|
||||
{% block title %}
|
||||
<title>Server registration deactivated | Zulip</title>
|
||||
|
|
|
@ -19,14 +19,21 @@
|
|||
"./src/billing/sponsorship",
|
||||
"./styles/portico/billing.css"
|
||||
],
|
||||
"billing_auth": [
|
||||
"./src/bundles/portico",
|
||||
"./src/portico/tippyjs",
|
||||
"./src/billing/helpers",
|
||||
"jquery-validation",
|
||||
"./src/billing/remote_billing_auth",
|
||||
"./src/billing/deactivate_server",
|
||||
"./styles/portico/billing.css"
|
||||
],
|
||||
"upgrade": [
|
||||
"./src/bundles/portico",
|
||||
"./src/portico/tippyjs",
|
||||
"./src/billing/helpers",
|
||||
"./src/billing/upgrade",
|
||||
"jquery-validation",
|
||||
"./src/billing/remote_billing_auth",
|
||||
"./src/billing/deactivate_server",
|
||||
"./styles/portico/billing.css"
|
||||
],
|
||||
"billing-event-status": [
|
||||
|
|
Loading…
Reference in New Issue