Commit 371df2fb5f6c5a8dd8b4f3cd82955e0d2e4f5052
1 parent
b026a547
Exists in
master
and in
23 other branches
ActionItem440: manage_products embelezada
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2081 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
16 additions
and
10 deletions
Show diff stats
app/views/manage_products/index.rhtml
| ... | ... | @@ -18,7 +18,9 @@ |
| 18 | 18 | <% end %> |
| 19 | 19 | </table> |
| 20 | 20 | |
| 21 | -<p> <%= link_to _('New product or service'), :action => 'new' %> </p> | |
| 21 | +<%= button :add, _('New product or service'), :action => 'new' %> | |
| 22 | + | |
| 23 | +<br /> | |
| 22 | 24 | |
| 23 | 25 | <h3> <%=_('Listing raw materials') %> </h3> |
| 24 | 26 | |
| ... | ... | @@ -42,6 +44,9 @@ |
| 42 | 44 | <% end %> |
| 43 | 45 | </table> |
| 44 | 46 | |
| 45 | -<p> <%= link_to _('Add raw material'), :action => 'new_consumption' %> </p> | |
| 47 | +<%= button :add, _('Add raw material'), :action => 'new_consumption' %> | |
| 48 | + | |
| 49 | +<p> | |
| 50 | +<%= link_to_myprofile( '<span>'+ _('Back') +'</span>', {}, @profile.identifier, :class => 'button with-text icon-back' ) %> | |
| 51 | +</p> | |
| 46 | 52 | |
| 47 | -<%= link_to_myprofile(_('Back'), {}, @profile.identifier) %> | ... | ... |
app/views/manage_products/show.rhtml
| 1 | 1 | <h3> <%= @product.name %> </h3> |
| 2 | 2 | |
| 3 | 3 | <p> <%= image_tag @product.image.public_filename if @product.image %> </p> |
| 4 | -<p> <%= _('Price:') %> <%= @product.price %> </p> | |
| 5 | -<p> <%= _('Description:') %> <%= @product.description %> </p> | |
| 6 | -<p> <%= _('Category:') %> <%= link_to_category(@product.product_category) %> </p> | |
| 4 | +<p> <strong><%= _('Price:') %></strong> <%= @product.price %> </p> | |
| 5 | +<p> <strong><%= _('Description:') %></strong> <%= txt2html @product.description if @product.description %> </p> | |
| 6 | +<p> <strong><%= _('Category:') %></strong> <%= link_to_category(@product.product_category) %> </p> | |
| 7 | + | |
| 8 | +<%= button :back, _('back'), :action => 'index' %> | |
| 9 | + | |
| 10 | +<%= button :delete, _('destroy'), :action => 'destroy', :id => @product %> | |
| 11 | +<%= button :edit, _('edit'), :action => 'edit', :id => @product %> | |
| 7 | 12 | |
| 8 | -<%= link_to _('edit'), :action => 'edit', :id => @product %> | |
| 9 | -<%= link_to _('destroy'), :action => 'destroy', :id => @product %> | |
| 10 | -<br/> | |
| 11 | -<%= link_to _('back'), :action => 'index' %> | ... | ... |