Skip to content

Commit

Permalink
Fix label for sentat column
Browse files Browse the repository at this point in the history
  • Loading branch information
mhagander committed Oct 8, 2024
1 parent 35872a0 commit a53fa6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgresqleu/confreg/backendforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,7 @@ def __init__(self, invoice, *args, **kwargs):
#
class BackendSendEmailForm(django.forms.Form):
_from = django.forms.CharField(max_length=100, disabled=True, label="From")
sendat = django.forms.DateTimeField(required=True, initial=timezone.now)
sendat = django.forms.DateTimeField(required=True, initial=timezone.now, label='Send at')
subject = django.forms.CharField(max_length=128, required=True)
recipients = django.forms.Field(widget=StaticTextWidget, required=False)
message = django.forms.CharField(widget=EmailTextWidget, required=True)
Expand Down

0 comments on commit a53fa6a

Please sign in to comment.