forked from bofh/fetsite
8 lines
362 B
Plaintext
8 lines
362 B
Plaintext
<div class="contentbox" id="calentry_<%= calentry.id%>">
|
|
<%= calentry.icon_text %>
|
|
<% if !(defined? manage) || manage %>
|
|
<%= link_to "edit", edit_calentry_path(calentry),:remote=>true if can? :edit, calentry %>
|
|
<%= link_to 'Delete', calentry, method: :delete, data: { confirm: 'Are you sure?' } , remote: true if can? :delete, calentry %>
|
|
<% end %>
|
|
</div>
|