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

13 lines
440 B
Plaintext
Raw Normal View History

2012-04-01 18:46:34 +00:00
<div id="<%= dom_id tag %>" class="tag clear">
<div class="tagitem">
<i class="icons-tag"></i>
2012-02-14 16:32:20 +00:00
<% @site_valid_locales.each do |locale| %>
2012-04-01 18:46:34 +00:00
<%#= I18nVariable.from_locale(locale) %>
2012-02-14 16:32:20 +00:00
<%= tag[locale] %>
<% end %>
2012-04-01 18:46:34 +00:00
</div>
<div class="action">
2012-02-14 16:32:20 +00:00
<%= 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 %>
2012-04-01 18:46:34 +00:00
</div>
2012-02-14 16:32:20 +00:00
</div>