Sha256: 3b9c1be493f41c21b0bd39b292fac964c51eeb5b7ac02a24738f2dbf5e261fd1

Contents?: true

Size: 1.35 KB

Versions: 11

Compression:

Stored size: 1.35 KB

Contents

<html>
<head>
<title><%= info[:title] %></title>
<style>
body {
  font-family: Sans-Serif;
}
table {
  width: 100%;
  border: 1px solid black;
  border-collapse: separate;
  border-radius: 3px;
}
th {
  border-radius: 3px;
  height: 50px;
  color: white;
  font-size: x-large;
  background: <%= info[:color] %>;
}
td {
  padding: 4px;
  /*font-size: smaller;*/
}
td.title {
  font-weight: bold;
  width: 10%;
}
td.data {
  width: 90%;
}
td.header {
  border-radius: 3px;
  height: 35px;
  background: lightgray;
  font-size: large;
  font-weight: bold;
  color: black; 
}
</style>
</head>
<body>
<table>
<th colspan="2"><%= info[:title] %></th>
<tr><td class="title">Job ID:</td><td class="data"><%= ctx[:job_id] %></td></tr>
<tr><td class="title">Job name:</td><td class="data"><%= ctx[:job_name] %></td></tr>
<tr><td class="title">Organization:</td><td class="data"><%= ctx[:organization] %></td></tr>
<tr><td class="title">Started:</td><td class="data"><%= ctx[:start] %></td></tr>
<tr><td class="title">Ended:</td><td class="data"><%= ctx[:end] %></td></tr>
<tr><td class="header" colspan="2">Message</td></tr>
<tr><td class="data" colspan="2"><%= message %></td></tr>
<tr><td class="header" colspan="2">Context</td></tr>
<% ctx.each do |ctx_key, ctx_val| -%>
<tr><td class="title"><%= ctx_key %><td class="data"><%= ctx_val %></td></tr>
<% end -%>
</table>
</body>
</html>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cyclid-0.4.0 app/cyclid/plugins/action/email/html.erb
cyclid-0.3.3 app/cyclid/plugins/action/email/html.erb
cyclid-0.3.2 app/cyclid/plugins/action/email/html.erb
cyclid-0.3.1 app/cyclid/plugins/action/email/html.erb
cyclid-0.3.0 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.5 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.4 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.3 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.2 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.1 app/cyclid/plugins/action/email/html.erb
cyclid-0.2.0 app/cyclid/plugins/action/email/html.erb