mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-27 13:36:06 +10:00
# Conflicts: # app/controllers/groups/application_controller.rb # app/services/test_hook_service.rb # app/views/admin/groups/show.html.haml # app/views/groups/_settings_nav.html.haml # app/views/groups/show.html.haml # app/views/layouts/_head.html.haml # app/views/projects/_settings_nav.html.haml # db/schema.rb # features/project/project.feature # features/steps/project/project.rb
24 lines
760 B
Plaintext
24 lines
760 B
Plaintext
- page_title "Email Notification"
|
|
%h3.page-title
|
|
Send email notification
|
|
%p.light
|
|
You can notify the app / group or a project by sending them an email notification
|
|
|
|
= form_tag admin_email_path, class: 'form-horizontal', id: 'new-admin-email' do
|
|
.form-group
|
|
%label.control-label{for: :subject} Subject
|
|
.col-sm-10
|
|
= text_field_tag :subject, '', class: 'form-control', required: true
|
|
|
|
.form-group
|
|
%label.control-label{for: :body} Body
|
|
.col-sm-10
|
|
= text_area_tag :body, '', class: 'form-control', rows: 15, required: true
|
|
|
|
.form-group
|
|
%label.control-label{for: :recipients} Recipient group
|
|
.col-sm-10
|
|
= admin_email_select_tag(:recipients)
|
|
.form-actions
|
|
= submit_tag 'Send message', class: 'btn btn-create'
|