From b1e08b468b7041ef5df179213f686722b0ead358 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson <david@loudthinking.com> Date: Thu, 27 Sep 2018 16:45:59 -0700 Subject: Provide a basic admin interface BEHOLD THE CONDUCTOR! --- app/views/action_mailroom/inbound_emails/index.html.erb | 15 +++++++++++++++ app/views/action_mailroom/inbound_emails/new.html.erb | 8 ++++++++ app/views/action_mailroom/inbound_emails/show.html.erb | 8 ++++++++ app/views/layouts/action_mailroom.html.erb | 7 +++++++ 4 files changed, 38 insertions(+) create mode 100644 app/views/action_mailroom/inbound_emails/index.html.erb create mode 100644 app/views/action_mailroom/inbound_emails/new.html.erb create mode 100644 app/views/action_mailroom/inbound_emails/show.html.erb create mode 100644 app/views/layouts/action_mailroom.html.erb (limited to 'app/views') diff --git a/app/views/action_mailroom/inbound_emails/index.html.erb b/app/views/action_mailroom/inbound_emails/index.html.erb new file mode 100644 index 0000000000..6636e351be --- /dev/null +++ b/app/views/action_mailroom/inbound_emails/index.html.erb @@ -0,0 +1,15 @@ +<% provide :title, "Deliver new inbound email" %> + +<h1>All inbound emails</h1> + +<table> + <tr><th>Message ID</th><th>Status</th></tr> + <% @inbound_emails.each do |inbound_email| %> + <tr> + <td><%= link_to inbound_email.message_id, main_app.rails_inbound_email_path(inbound_email) %></td> + <td><%= inbound_email.status %></td> + </tr> + <% end %> +</table> + +<%= link_to "Deliver new inbound email", main_app.new_rails_inbound_email_path %> \ No newline at end of file diff --git a/app/views/action_mailroom/inbound_emails/new.html.erb b/app/views/action_mailroom/inbound_emails/new.html.erb new file mode 100644 index 0000000000..dfd0bd7ea5 --- /dev/null +++ b/app/views/action_mailroom/inbound_emails/new.html.erb @@ -0,0 +1,8 @@ +<% provide :title, "Deliver new inbound email" %> + +<h1>Deliver new inbound email</h1> + +<%= form_with(url: main_app.rails_inbound_emails_url, remote: false) do |form| %> + <%= form.file_field :message, size: "150x50", autofocus: true %><br> + <%= form.submit "Deliver inbound email" %> +<% end %> diff --git a/app/views/action_mailroom/inbound_emails/show.html.erb b/app/views/action_mailroom/inbound_emails/show.html.erb new file mode 100644 index 0000000000..bc443775e4 --- /dev/null +++ b/app/views/action_mailroom/inbound_emails/show.html.erb @@ -0,0 +1,8 @@ +<% provide :title, @inbound_email.message_id %> + +<h1><%= @inbound_email.message_id %>: <%= @inbound_email.status %></h1> + +<ul> + <li>Retry</li> + <li>Incinerate</li> +</ul> diff --git a/app/views/layouts/action_mailroom.html.erb b/app/views/layouts/action_mailroom.html.erb new file mode 100644 index 0000000000..3efa8c3989 --- /dev/null +++ b/app/views/layouts/action_mailroom.html.erb @@ -0,0 +1,7 @@ +<html> +<head> + <title><%= yield :title %></title> +</head> +<body> +<%= yield %> +</html> -- cgit v1.2.3