Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/mailer/preview.html.haml')
-rw-r--r--app/views/admin/mailer/preview.html.haml29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/views/admin/mailer/preview.html.haml b/app/views/admin/mailer/preview.html.haml
new file mode 100644
index 00000000000..7b723cb8021
--- /dev/null
+++ b/app/views/admin/mailer/preview.html.haml
@@ -0,0 +1,29 @@
+%p This is page with preview for all system emails that are sent to user
+%p Email previews built based on existing Project/Commit/Issue base - so some preview maybe unavailable unless object appear in system
+
+#accordion
+ %h3
+ %a New user
+ %div
+ %iframe{ :src=> admin_mailer_preview_user_new_path, :width=>"100%", :height=>"350"}
+ %h3
+ %a New issue
+ %div
+ %iframe{ :src=> admin_mailer_preview_issue_new_path, :width=>"100%", :height=>"350"}
+ %h3
+ %a Commit note
+ %div
+ %iframe{ :src=> admin_mailer_preview_note_path(:type => "Commit"), :width=>"100%", :height=>"350"}
+ %h3
+ %a Issue note
+ %div
+ %iframe{ :src=> admin_mailer_preview_note_path(:type => "Issue"), :width=>"100%", :height=>"350"}
+ %h3
+ %a Wall note
+ %div
+ %iframe{ :src=> admin_mailer_preview_note_path(:type => "Wall"), :width=>"100%", :height=>"350"}
+
+
+:javascript
+ $(function() {
+ $( "#accordion" ).accordion(); });