diff --git a/com/models.py b/com/models.py index b2effd47..c5a83b3f 100644 --- a/com/models.py +++ b/com/models.py @@ -227,13 +227,15 @@ class Weekmail(models.Model): """ Return an absolute link to the banner. """ - return "http://" + settings.SITH_URL + static("com/img/weekmail_bannerA19.jpg") + return ( + "http://" + settings.SITH_URL + static("com/img/invitation_bannerP22.png") + ) def get_footer(self): """ Return an absolute link to the footer. """ - return "http://" + settings.SITH_URL + static("com/img/weekmail_footerA19.jpg") + return "http://" + settings.SITH_URL + static("com/img/weekmail_footerP22.png") def __str__(self): return "Weekmail %s (sent: %s) - %s" % (self.id, self.sent, self.title) diff --git a/core/static/com/img/invitation_bannerP22.png b/core/static/com/img/invitation_bannerP22.png new file mode 100644 index 00000000..6ca3c6bc Binary files /dev/null and b/core/static/com/img/invitation_bannerP22.png differ diff --git a/core/static/com/img/weekmail_bannerV1P22.png b/core/static/com/img/weekmail_bannerV1P22.png new file mode 100644 index 00000000..0ed4aabe Binary files /dev/null and b/core/static/com/img/weekmail_bannerV1P22.png differ diff --git a/core/static/com/img/weekmail_bannerV2P22.png b/core/static/com/img/weekmail_bannerV2P22.png new file mode 100644 index 00000000..b75ac007 Binary files /dev/null and b/core/static/com/img/weekmail_bannerV2P22.png differ diff --git a/core/static/com/img/weekmail_footerP22.png b/core/static/com/img/weekmail_footerP22.png new file mode 100644 index 00000000..d1ce8ce3 Binary files /dev/null and b/core/static/com/img/weekmail_footerP22.png differ