2017-02-11 05:20:42 +00:00
|
|
|
<% topic1 = @entity || entity
|
|
|
|
synapse = @event || event
|
|
|
|
button_style = "background-color:#4fc059;border-radius:2px;color:white;display:inline-block;font-family:Roboto,Arial,Helvetica,sans-serif;font-size:12px;font-weight:bold;min-height:29px;line-height:29px;min-width:54px;outline:0px;padding:0 8px;text-align:center;text-decoration:none"
|
|
|
|
topic2 = (topic1.id == synapse.topic1_id ? synapse.topic2 : synapse.topic1) %>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span style="font-weight: bold;"><%= synapse.user.name %></span>
|
|
|
|
connected topic <span style="font-weight: bold"><%= topic1.name %></span>
|
|
|
|
to topic <span style="font-weight: bold"><%= topic2.name %></span>
|
|
|
|
<% if synapse.desc.length > 0 %>
|
|
|
|
with the description "<%= synapse.desc %>".
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
|
2017-02-16 13:42:35 +00:00
|
|
|
<%= link_to 'View the connection', topic_url(topic1), style: button_style %>
|
|
|
|
|
2017-02-16 13:55:19 +00:00
|
|
|
<%= render :partial => 'topic_mailer/unfollow', locals: { topic: topic1 } %>
|