From 468cf9e9bac4ce407bfe3f206fa290ab0abdf124 Mon Sep 17 00:00:00 2001 From: Shashank Verma Date: Thu, 5 Oct 2023 22:44:06 +0530 Subject: [PATCH] home: ContriHUB-22 > 23 Signed-off-by: Shashank Verma --- home/templates/dashboard/mail_template_pr_action.html | 4 ++-- .../dashboard/mail_template_request_issue_assignment.html | 2 +- .../dashboard/mail_template_submit_pr_request.html | 2 +- home/views.py | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/home/templates/dashboard/mail_template_pr_action.html b/home/templates/dashboard/mail_template_pr_action.html index 7ff1c98..b976361 100644 --- a/home/templates/dashboard/mail_template_pr_action.html +++ b/home/templates/dashboard/mail_template_pr_action.html @@ -5,7 +5,7 @@ 'issue': issue, 'action': 'accepted/rejected', 'mentor': mentor.username, - 'subject': "PR Accepted/Rejected under ContriHUB-22.", + 'subject': "PR Accepted/Rejected under ContriHUB-23.", } {% endcomment %} {% autoescape off %} @@ -18,5 +18,5 @@

Sincerely,
-ContriHUB-22 Team
+ContriHUB-23 Team
{% endautoescape %} \ No newline at end of file diff --git a/home/templates/dashboard/mail_template_request_issue_assignment.html b/home/templates/dashboard/mail_template_request_issue_assignment.html index 47cceb2..65bb4e3 100644 --- a/home/templates/dashboard/mail_template_request_issue_assignment.html +++ b/home/templates/dashboard/mail_template_request_issue_assignment.html @@ -20,5 +20,5 @@ window instead.

Sincerely,
-ContriHUB-22 Team
+ContriHUB-23 Team
{% endautoescape %} \ No newline at end of file diff --git a/home/templates/dashboard/mail_template_submit_pr_request.html b/home/templates/dashboard/mail_template_submit_pr_request.html index ecf6ddd..ba9f36c 100644 --- a/home/templates/dashboard/mail_template_submit_pr_request.html +++ b/home/templates/dashboard/mail_template_submit_pr_request.html @@ -20,5 +20,5 @@ window instead.

Sincerely,
-ContriHUB-22 Team
+ContriHUB-23 Team
{% endautoescape %} \ No newline at end of file diff --git a/home/views.py b/home/views.py index 88d9193..9e22db6 100644 --- a/home/views.py +++ b/home/views.py @@ -125,7 +125,7 @@ def request_issue_assignment(request, issue_pk): 'url': issue.html_url, 'protocol': request.build_absolute_uri().split('://')[0], 'host': request.get_host() + '/' + decouple.config('BASE_URL', default=''), - 'subject': "Request for Issue Assignment under ContriHUB-22.", + 'subject': "Request for Issue Assignment under ContriHUB-23.", 'issue': issue, 'action': '', 'receiver': issue.mentor, @@ -214,7 +214,7 @@ def submit_pr_request(request, active_issue_pk): 'host': request.get_host() + '/' + decouple.config('BASE_URL', default=''), 'issue': issue, 'action': '', - 'subject': "Request for Approval of PR on an issue under ContriHUB-22.", + 'subject': "Request for Approval of PR on an issue under ContriHUB-23.", 'receiver': issue.mentor, } try: @@ -278,7 +278,7 @@ def judge_pr(request, pk): 'host': request.get_host(), 'issue': issue, 'action': 'accepted', - 'subject': "PR Accepted under ContriHUB-22.", + 'subject': "PR Accepted under ContriHUB-23.", 'receiver': contributor, } try: @@ -304,7 +304,7 @@ def judge_pr(request, pk): 'host': request.get_host(), 'issue': issue, 'action': 'rejected', - 'subject': "PR Rejected under ContriHUB-22.", + 'subject': "PR Rejected under ContriHUB-23.", 'receiver': contributor, } try: