public ActionResult DeleteIndicator()
        {
            var model = new AdminModel
            {
                AdminType = "Delete indicator"
            };

            return View("Admin", model);
        }
        public ActionResult Admin()
        {
            var model = new AdminModel
            {
                AdminType = "Please select an option"
            };

            return View(model);
        }
        public ActionResult ChangeIndicatorOwner()
        {
            var model = new AdminModel
            {
                AdminType = "Change indicator owner",
                Profiles = _reader.GetProfiles().OrderBy(x => x.Name).ToList()
            };

            return View("Admin", model);
        }