35 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| <%= t "user_mailer.warning.title.#{@warning.action}" %>
 | |
| 
 | |
| ===
 | |
| 
 | |
| <% unless @warning.none_action? %>
 | |
| <%= t "user_mailer.warning.explanation.#{@warning.action}", instance: @instance %>
 | |
| 
 | |
| <% end %>
 | |
| <% if @warning.text.present? %>
 | |
| <%= @warning.text %>
 | |
| 
 | |
| <% end %>
 | |
| <% if @warning.report && !@warning.report.other? %>
 | |
| **<%= t('user_mailer.warning.reason') %>** <%= t("user_mailer.warning.categories.#{@warning.report.category}") %>
 | |
| 
 | |
| <% if @warning.report.violation? && @warning.report.rule_ids.present? %>
 | |
| <% @warning.report.rules.each do |rule| %>
 | |
| - <%= rule.text %>
 | |
| <% end %>
 | |
| 
 | |
| <% end %>
 | |
| <% end %>
 | |
| <% if !@statuses.empty? %>
 | |
| <%= t('user_mailer.warning.statuses') %>
 | |
| 
 | |
| <% @statuses.each do |status| %>
 | |
| 
 | |
| <%= render 'notification_mailer/status', status: status %>
 | |
| ---
 | |
| <% end %>
 | |
| <% else %>
 | |
| ---
 | |
| <% end %>
 | |
| 
 | |
| <%= t 'user_mailer.warning.get_in_touch', instance: @instance %>
 |