kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
3 years ago
|
<%= render layout: 'mailer/spacer_table' do %>
|
||
|
<%= render partial: 'mailer/notification_mailer_header',
|
||
|
locals: {
|
||
|
summary: header_summary,
|
||
|
user: user
|
||
|
} %>
|
||
|
|
||
|
<%= render layout: 'mailer/border_table' do %>
|
||
|
<tr>
|
||
|
<%= placeholder_cell('24px', vertical: true) %>
|
||
|
<td>
|
||
|
<table>
|
||
|
<% if body_subheader %>
|
||
|
<tr>
|
||
|
<td style="<%= placeholder_text_styles('font-weight': 'bold') %>">
|
||
|
<%= format_text body_subheader %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
<% if body_header %>
|
||
|
<tr>
|
||
|
<td style="<%= placeholder_text_styles(color: '#333333', 'line-height': '36px', 'font-size': '18px', 'font-weight': 'bold') %>">
|
||
|
<%= format_text body_header %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
<tr>
|
||
|
<td style="<%= placeholder_text_styles %>">
|
||
|
<%= format_text body %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
<%= placeholder_cell('24px', vertical: true) %>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<%= placeholder_cell('24px', vertical: false) %>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
|
||
|
<%= render partial: 'mailer/notification_settings_table' %>
|
||
|
<% end %>
|