public ActionResult Delete(int id)
        {
            var profile = _themeSettingsService.GetProfile(id);

            _themeSettingsService.DeleteProfile(profile.Id);
            _notifier.Information(T("The {0} profile has been deleted.", profile.Name));

            return(RedirectToAction("Index", new { id = profile.Theme }));
        }