Skip to content

Commit

Permalink
fix line width and remove pydoc-markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiramtilakiiit committed Jan 25, 2025
1 parent d2f0db7 commit 9ec4e8d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions mailing_templates.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
"""
Contains templates for emails to be sent to CC, SLO, SLC and the club regarding the event's approval and its status to interested parties.
Contains templates for emails to be sent to CC, SLO, SLC and the club
regarding the event's approval and its status to interested parties.
"""

from string import Template

# Email Templates

# email template requesting approval for an event to CC(Clubs Council), SLO(Student Life Office) and SLC(Student Life Committee).
# email template requesting approval for an event to
# CC(Clubs Council),SLO(Student Life Office) and SLC(Student Life Committee).
# common subject but 3 different bodies
PROGRESS_EVENT_SUBJECT = Template(
"""
Expand Down Expand Up @@ -98,7 +100,8 @@
""" # noqa: E501
)

# email template informing the deletion of the event from the club's side and informing the CC(Clubs Council).
# email template informing the deletion of the event from the club's side
# and informing the CC(Clubs Council).
DELETE_EVENT_SUBJECT = Template(
"""
[Events] $event_id: Deletion of $event
Expand All @@ -121,8 +124,10 @@

# Email Templates For Clubs

# email template informing the club regarding the status of the events approval.
# regarding processing, approval and rejection status of the event.even if the event was deleted by the CC.
# email template informing the club regarding the status of the events
# approval.
# regarding processing, approval and rejection status of the event even
# if the event was deleted by the CC.
CLUB_EVENT_SUBJECT = Template(
"""
[Events] $event_id: $event Request Receipt
Expand Down Expand Up @@ -196,7 +201,8 @@
""" # noqa: E501
)

# email template informing the club regarding the status of the event's budget by SLO.
# email template informing the club regarding the status of the event's
# budget by SLO.
EVENT_BILL_STATUS_SUBJECT = Template(
"""
Update on Bill Status for $event
Expand Down

0 comments on commit 9ec4e8d

Please sign in to comment.