Skip to content

Commit

Permalink
home: ContriHUB-22 > 23
Browse files Browse the repository at this point in the history
Signed-off-by: Shashank Verma <[email protected]>
  • Loading branch information
shank03 committed Oct 5, 2023
1 parent 8c7a0db commit 468cf9e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions home/templates/dashboard/mail_template_pr_action.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand All @@ -18,5 +18,5 @@
<br>
<br>
Sincerely,<br>
ContriHUB-22 Team<br>
ContriHUB-23 Team<br>
{% endautoescape %}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
window instead.<br><br>

Sincerely,<br>
ContriHUB-22 Team<br>
ContriHUB-23 Team<br>
{% endautoescape %}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
window instead.<br><br>

Sincerely,<br>
ContriHUB-22 Team<br>
ContriHUB-23 Team<br>
{% endautoescape %}
8 changes: 4 additions & 4 deletions home/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 468cf9e

Please sign in to comment.