public ActionResult Clone(int id)
        {
            var profile       = _themeSettingsService.GetProfile(id);
            var clonedProfile = _themeSettingsService.CloneProfile(profile);

            _themeSettingsService.SaveProfile(clonedProfile);
            _notifier.Information(T("The {0} profile has been cloned.", profile.Name, clonedProfile.Name));

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