diff --git a/app/models/email_template.rb b/app/models/email_template.rb index a8042c03..b94f0df0 100644 --- a/app/models/email_template.rb +++ b/app/models/email_template.rb @@ -14,6 +14,7 @@ # required :boolean default(FALSE) # subject :string # title :string +# to :string # created_at :datetime not null # updated_at :datetime not null # diff --git a/app/views/email_templates/_form.html.erb b/app/views/email_templates/_form.html.erb index 5a7a6e12..ce6df5f3 100644 --- a/app/views/email_templates/_form.html.erb +++ b/app/views/email_templates/_form.html.erb @@ -1,7 +1,10 @@ +<%# This part of the page is the email template form %> <%= form_with(model: email_template, local: true) do |form| %>