orbit-basic/app/views/admin/tags/_tag.html.erb

8 lines
335 B
Plaintext
Raw Normal View History

2012-02-14 16:32:20 +00:00
<div id="<%= dom_id tag %>" >
<% @site_valid_locales.each do |locale| %>
<%= I18nVariable.from_locale(locale) %>:
<%= tag[locale] %>
<% end %>
<%= link_to t(:edit), edit_admin_tag_path(tag), :remote => true %>
<%= link_to t(:delete), admin_tag_path(tag), :confirm => t('sure?'), :method => :delete, :remote => true %>
</div>