Skip to content

Commit

Permalink
Add link to transfer ownership automatically in email
Browse files Browse the repository at this point in the history
  • Loading branch information
julianweng committed Aug 17, 2024
1 parent 80a5913 commit c0c3780
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ React/Next.js frontend and Django-based REST API.

## Installation

You will need to start both the backend and the frontend to do Penn Clubs development.

You will need to start both the backend and the frontend to develop on Penn Clubs. Clubs supports Mac and Linux/WSL development.

Questions? Check out our [extended guide](https://github.com/pennlabs/penn-clubs/wiki/Development-Guide) for FAQs.
Expand Down
2 changes: 1 addition & 1 deletion backend/clubs/management/commands/send_emails.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def handle(self, *args, **kwargs):
for club in clubs:
if action == "semesterly_email":
context = {"code": club.code}
elif action == "update_officers":
elif action == "update_officers" or action == "revised_fair_date":
context = {
"name": club.name,
"url": f"https://pennclubs.com/club/{club.code}/edit/member",
Expand Down
13 changes: 11 additions & 2 deletions backend/templates/emails/revised_fair_date.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<!-- SUBJECT: [CORRECTION] Updated information on Fall Activities Fair registration -->
<!-- TYPES: {} -->
<!-- TYPES:
name:
type: string
url:
type: string
-->
{% extends 'emails/base.html' %} {% block content %}
<p style="font-size: 1.2em">Hello,</p>
<p style="font-size: 1.2em">
Expand All @@ -22,7 +27,11 @@
</p>
<p style="font-size: 1.2em">
We have also enabled editing existing clubs and removed the need to re-queue
after updating club description.
after updating club description. In addition, we've received a large number of
requests to transfer club ownership. While we are working through these,
existing owners can also transfer ownership <a href="{{ url }}">here</a> at
any time (please let us know if you do so and had already submitted a
request).
</p>
<p style="font-size: 1.2em">
Please refer to the official email sent from the Office of Student Affairs for
Expand Down

0 comments on commit c0c3780

Please sign in to comment.