Commit 2e1d108e6f5a1a867381112418e094aeb5b825bd
1 parent
a349f151
Exists in
master
and in
28 other branches
Prefix missing partials
Showing
4 changed files
with
5 additions
and
5 deletions
Show diff stats
app/views/manage_products/_display_inputs.rhtml
@@ -20,7 +20,7 @@ | @@ -20,7 +20,7 @@ | ||
20 | 20 | ||
21 | <div id='display-product-inputs'> | 21 | <div id='display-product-inputs'> |
22 | <ul class='input-list'> | 22 | <ul class='input-list'> |
23 | - <%= render :partial => 'input', :collection => @inputs %> | 23 | + <%= render :partial => 'manage_products/input', :collection => @inputs %> |
24 | </ul> | 24 | </ul> |
25 | <%= edit_link(_('Order inputs'), {:action => 'order_inputs', :id => @product.id}, :class => "order-inputs", :style => 'display:none') %> | 25 | <%= edit_link(_('Order inputs'), {:action => 'order_inputs', :id => @product.id}, :class => "order-inputs", :style => 'display:none') %> |
26 | </div> | 26 | </div> |
app/views/manage_products/_input.rhtml
app/views/manage_products/_manage_product_details.rhtml
1 | <div id='price-composition-bar'> | 1 | <div id='price-composition-bar'> |
2 | - <%= render :partial => 'price_composition_bar' %> | 2 | + <%= render :partial => 'manage_products/price_composition_bar' %> |
3 | </div> | 3 | </div> |
4 | 4 | ||
5 | <% form_tag({:action => 'manage_product_details'}, :method => 'post', :id => 'manage-product-details-form') do %> | 5 | <% form_tag({:action => 'manage_product_details'}, :method => 'post', :id => 'manage-product-details-form') do %> |
@@ -14,7 +14,7 @@ | @@ -14,7 +14,7 @@ | ||
14 | <small><%= _('This value is composed by the total value of registered inputs') %></small> | 14 | <small><%= _('This value is composed by the total value of registered inputs') %></small> |
15 | </td> | 15 | </td> |
16 | </tr> | 16 | </tr> |
17 | - <%= render :partial => 'edit_price_details', :locals => {:price_details => @product.price_details} %> | 17 | + <%= render :partial => 'manage_products/edit_price_details', :locals => {:price_details => @product.price_details} %> |
18 | </table> | 18 | </table> |
19 | </div> | 19 | </div> |
20 | 20 |
app/views/manage_products/edit.rhtml