Hide Document Templates & UI Tweaks
Flag Document Templates as hidden. UI changes aim to improve visibility of used features in lists.
This commit is contained in:
@@ -20,5 +20,6 @@ namespace Disco.Models.UI.Config.DeviceBatch
|
||||
DateTime? WarrantyExpires { get; set; }
|
||||
DateTime? InsuredUntil { get; set; }
|
||||
string InsuranceSupplier { get; set; }
|
||||
bool IsLinked { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Disco.Models.UI.Config.DeviceProfile
|
||||
namespace Disco.Models.UI.Config.DeviceProfile
|
||||
{
|
||||
public interface ConfigDeviceProfileIndexModelItem
|
||||
{
|
||||
@@ -18,5 +12,6 @@ namespace Disco.Models.UI.Config.DeviceProfile
|
||||
|
||||
int DeviceCount { get; set; }
|
||||
int DeviceDecommissionedCount { get; set; }
|
||||
bool IsLinked { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,13 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.UI.Config.DocumentTemplate
|
||||
{
|
||||
public interface ConfigDocumentTemplateIndexModel : BaseUIModel
|
||||
{
|
||||
List<Disco.Models.Repository.DocumentTemplate> DocumentTemplates { get; set; }
|
||||
Dictionary<Repository.DocumentTemplate, int> DocumentTemplates { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ namespace Disco.Models.UI.Config.UserFlag
|
||||
{
|
||||
public interface ConfigUserFlagIndexModel : BaseUIModel
|
||||
{
|
||||
List<Repository.UserFlag> UserFlags { get; set; }
|
||||
Dictionary<Repository.UserFlag, int> UserFlags { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user