diff --git a/sspromotions/jinja2/sspromotions/bulletin_edit.html b/sspromotions/jinja2/sspromotions/bulletin_edit.html index 64c415e..3fea4f9 100644 --- a/sspromotions/jinja2/sspromotions/bulletin_edit.html +++ b/sspromotions/jinja2/sspromotions/bulletin_edit.html @@ -41,7 +41,7 @@ -
The item will be scheduled for the first bulletin post on or after this date.
+
Choose the date to publish the bulletin item (must be a Sunday).
@@ -110,6 +110,9 @@ date: function(date, settings) { return date.getFullYear() + '-' + leftpad(date.getMonth() + 1) + '-' + leftpad(date.getDate()); } + }, + isDisabled: function(date, mode) { + return date.getDay() !== 0; // Sunday only } });