From c29a853d3cb45a409e71b7db7ae4a49837ce2cce Mon Sep 17 00:00:00 2001 From: Collapsed Plug Date: Wed, 21 Jun 2017 01:51:52 +0900 Subject: [PATCH] Got rid of hardcoding in email templates --- src/templates/registration/acceptance_email.txt | 6 +++--- src/templates/registration/activation_email.txt | 10 +++++----- src/templates/registration/notification_email.txt | 4 ++-- src/templates/registration/password_reset_email.html | 2 +- src/templates/registration/registration_email.txt | 4 ++-- src/templates/registration/rejection_email.txt | 6 +++--- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/templates/registration/acceptance_email.txt b/src/templates/registration/acceptance_email.txt index e0162fe6..e301f9c2 100644 --- a/src/templates/registration/acceptance_email.txt +++ b/src/templates/registration/acceptance_email.txt @@ -8,7 +8,7 @@ Kawazへの登録申請ありがとうございます。会員登録が承認さ 会員登録を完了するために{{ expiration_days }}日以内に以下のURLをクリックしてアカウントを有効にしてください。 -https://{{ site.domain }}{% url 'registration_activate' activation_key=activation_key %} +{{ protocol }}://{{ domain }}{% url 'registration_activate' activation_key=activation_key %} なお{{ expiration_days }}日以内にアカウントが有効化されない場合は自動的にアカウント情報が削除されるので注意してください。 @@ -22,7 +22,7 @@ https://{{ site.domain }}{% url 'registration_activate' activation_key=activatio また、KawazではSlackというチャットツールの設定を使って交流やゲーム開発を行っています。 詳しい登録作業については、以下のページを参照してください。 -https://www.kawaz.org/helps/slack/ +https://{{site.domain}}/helps/slack/ このメールと同時に、KawazのSlackから招待メールが届きます。 メールの差出人は「Slack」もしくはfeedback@slack.com、 @@ -35,7 +35,7 @@ https://www.kawaz.org/helps/slack/ ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://{{ site.domain }} +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org ------------------------------------------------------- diff --git a/src/templates/registration/activation_email.txt b/src/templates/registration/activation_email.txt index 78ad9e8f..69bf4138 100644 --- a/src/templates/registration/activation_email.txt +++ b/src/templates/registration/activation_email.txt @@ -9,24 +9,24 @@ なお登録時のパスワードを忘れた場合はお手数ですが -https://{{ site.domain }}{% url 'password_reset' %} +{{ protocol }}://{{ domain }}{% url 'password_reset' %} より再設定を行ってください。今後とも宜しくお願いいたします。 Kawazでは登録いただいたこのポータルサイトやチャットツールを使って、メンバー間の交流をしています。 詳しくはこのページをどうぞ! -https://www.kawaz.org/helps/welcome/ +https://{{site.domain}}/helps/welcome/ また、Kawazでは定期的に開かれているミーティングをはじめとして、様々なイベントが開かれています。 最初はちょっと勇気がいるかもしれませんが、はじめの一歩としてイベントに参加してみましょう! -https://www.kawaz.org/helps/events/ +https://{{site.domain}}/helps/events/ このメールが身に覚えのない方はお手数ですが webmaster@kawaz.org までご連絡をお願いいたします。 ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://{{ site.domain }} +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org -------------------------------------------------------- \ No newline at end of file +------------------------------------------------------- diff --git a/src/templates/registration/notification_email.txt b/src/templates/registration/notification_email.txt index 7449e399..68014621 100644 --- a/src/templates/registration/notification_email.txt +++ b/src/templates/registration/notification_email.txt @@ -5,7 +5,7 @@ {{ user.username }}さんが新規会員登録申請を行いました。以下のリンクをクリックして許可もしくは拒否を行ってください。 なおこのメールは新規会員登録を許可もしくは拒否できるメンバー全員に自動的に送信されています。 -https://{{ site.domain }}/central-dogma/registration/registrationprofile/{{ profile.pk }}/ +{{ protocol }}://{{ domain }}/central-dogma/registration/registrationprofile/{{ profile.pk }}/ {{ user.username }}さんの情報 @@ -27,7 +27,7 @@ https://{{ site.domain }}/central-dogma/registration/registrationprofile/{{ prof ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://{{ site.domain }} +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org ------------------------------------------------------- diff --git a/src/templates/registration/password_reset_email.html b/src/templates/registration/password_reset_email.html index 9d211657..ce02b642 100644 --- a/src/templates/registration/password_reset_email.html +++ b/src/templates/registration/password_reset_email.html @@ -15,7 +15,7 @@ ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://www.kawaz.org/ +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org ------------------------------------------------------- diff --git a/src/templates/registration/registration_email.txt b/src/templates/registration/registration_email.txt index 82c2daca..9178181a 100644 --- a/src/templates/registration/registration_email.txt +++ b/src/templates/registration/registration_email.txt @@ -19,7 +19,7 @@ ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://www.kawaz.org/ +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org -------------------------------------------------------- \ No newline at end of file +------------------------------------------------------- diff --git a/src/templates/registration/rejection_email.txt b/src/templates/registration/rejection_email.txt index 449a4eaa..1e2eeddf 100644 --- a/src/templates/registration/rejection_email.txt +++ b/src/templates/registration/rejection_email.txt @@ -3,7 +3,7 @@ {{ user.username }}さま 申し訳ありませんが新規会員登録申請が管理者によって拒否されました。 -利用規約( https://www.kawaz.org/rules/ )にあるとおり、以下の点についてもう一度ご確認ください +利用規約( {{ protocol }}://{{ domain }}/rules/ )にあるとおり、以下の点についてもう一度ご確認ください {{ message }} @@ -14,7 +14,7 @@ ------------------------------------------------------- 札幌ゲーム製作者コミュニティ - Kawaz -ホームページ: https://www.kawaz.org/ +ホームページ: {{ protocol }}://{{ domain }} 責任者: {% settings 'GEEKDRUMS_NAME' %} 連絡先: webmaster@kawaz.org -------------------------------------------------------- \ No newline at end of file +-------------------------------------------------------