<%= path %> |
<%= h template_spec.status %>
|
<% if template_spec.status == MasterView::TemplateSpec::Status::ImportsOutdated %>
<%= link_to 'Rebuild', :action => :rebuild, :id => path %>
<% end %>
<% if template_spec.status == MasterView::TemplateSpec::Status::OK %>
<%= link_to 'Copy', :action => 'create', :id => path %>
<% end %>
|
<%= h template_spec.message %> |
<% template_spec.gen_parts.each do |part| %>
<% if MasterView::EnableMasterViewAdminViewRHTML %>
<%= link_to part, {:action => :view_rhtml, :id => part}, :title => 'View RHTML - '+part %>
<% else %>
<%= part %>
<% end %>
<% end %>
|
<% end %>