From 3f37838389a27af74eeb76500e5d8dedb54f6d8b Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 17 Jun 2016 16:56:36 -0400 Subject: [PATCH] Update for admin list view and edit add forms. (amenity) For the edit add amenity forms commenting out the description and short description fields. For the list view commenting out description and short description. For the list view adding the groups column to show which groups the amenity is in. --- views/admin/settings/amenities.html | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/views/admin/settings/amenities.html b/views/admin/settings/amenities.html index 397e09c6..729531ef 100644 --- a/views/admin/settings/amenities.html +++ b/views/admin/settings/amenities.html @@ -24,6 +24,7 @@ + @@ -101,6 +103,7 @@ +
@@ -160,8 +164,11 @@ + + @@ -180,12 +187,19 @@ + + @@ -232,8 +246,8 @@ $('#editAmenityName').val(amenityName.trim()); $('#editAmenityRef').val(amenityRefTypeID); $('#editAmenityUsesValue').prop('checked', amenityUsesValue); - $('#editAmenityDescr').val(amenityDescr.trim()); - $('#editAmenityShortDescr').val(amenityShortDescr.trim()); + //$('#editAmenityDescr').val(amenityDescr.trim()); + //$('#editAmenityShortDescr').val(amenityShortDescr.trim()); $('.amenityGroup').each(function(){ $(this).prop('checked', false); }); -- 2.17.1
Amenity Used WithGroups  
{$t.ref_type.name} + {foreach $t.groups as $group} + {$groups[$group.group_id].name} + {/foreach} +
Delete