foldscaf 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## v0.0.6
|
|
2
|
+
* Botones alineados a la derecha en Administración
|
|
3
|
+
* Quitado boton 'ver' de edit, ya que no existe el show
|
|
4
|
+
|
|
1
5
|
## v0.0.5
|
|
2
6
|
* Edit y New ahora tienen su propio header, y votones para volver y ver, en lugar de Cancelar
|
|
3
7
|
* _form ahora es solo el formulario
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
<nav class="well">
|
|
6
6
|
<%%= link_to "Volver", <%= @plural_path %>, :class => 'btn' %>
|
|
7
|
-
<%%= link_to "Ver", <%= @singular_path %>(@<%= @singular %>), :class => 'btn' %>
|
|
8
7
|
</nav>
|
|
9
8
|
|
|
10
9
|
<%%= render "form", :<%= @singular %> => @<%= @singular %>, :url => <%= @singular_path %>(@<%= @singular %>) %>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<%%= content_tag :tr, :id => "elementos_#{<%= @singular %>.id}" do %>
|
|
2
2
|
<td><%%= <%= @singular %>.<%= @identificador %> %></td>
|
|
3
|
-
<td>
|
|
3
|
+
<td style="text-align:right;">
|
|
4
4
|
<%- if @con_orden -%>
|
|
5
5
|
<%%= content_tag :i, '', :class => [:handle, :"icon-move"], :title => 'Mantenga click y arrastre para reordenar' %>
|
|
6
6
|
<%- end -%>
|
data/lib/version.rb
CHANGED