add user manual for zone

This commit is contained in:
phyusin
2017-10-23 17:59:35 +06:30
parent d3dfabd66a
commit ba18e722d7
33 changed files with 446 additions and 165 deletions

View File

@@ -20,7 +20,7 @@
<th>Alt name</th>
<th>Order by</th>
<th>Parent</th>
<th colspan="3"></th>
<th colspan="2">Actions</th>
</tr>
</thead>
@@ -31,7 +31,16 @@
<td><%= @category.alt_name %></td>
<td><%= @category.order_by %></td>
<td><%= @category.parent.name rescue "-" %></td>
<td><%= link_to t("views.btn.edit"), edit_settings_menu_category_path(@category) %></td>
<td><%= link_to t("views.btn.edit"), edit_settings_menu_category_path(@category) %>
<button class="delete btn btn-danger btn-sm waves-effect" data-ref="<%= esettings_menu_category_path(@category)%>" data-method="delete">
<%= t("views.btn.delete") %>
</button>
<span class="hidden" id="delete_text">
<h6>Are you sure you want to delete this row ?</h6>
<h6>This action can't be undo. </h6>
</span>
</td>
</tr>
</tbody>
</table>