<%= type == "create" ? "新建" : "编辑" %><%= @message_template.simple_type %>消息模版
<%= link_to "返回", admins_message_templates_path, class: "btn btn-default pull-right" %>
<%= form_for @message_template, url: {controller: "message_templates", action: "#{type}"} do |f| %>
<%= f.text_area :sys_notice, class:"form-control", rows: "10", cols: "20",placeholer: "请输入站内信" %>
<%= f.text_field :notification_url, class: "form-control input-lg", maxlength: "60", placeholder: "请输入站内信跳转地址" %>
<%= f.text_field :email_title, class: "form-control input-lg", maxlength: "60", placeholder: "请输入邮件标题" %>
<%= f.text_area :email, class:"form-control", style: 'display: none;', rows: "10", cols: "20", placeholer: "请输入邮件正文" %>
<%= f.submit "确认", class: "btn btn-primary submit-btn" %>
<% end %>