Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FullDescriptionGeneratorPopup.cshtml

@using Nop.Services
@using Nop.Core.Domain.ArtificialIntelligence
@model ArtificialIntelligenceFullDescriptionModel

@{
    Layout = "_AdminPopupLayout";

    //page title
    ViewBag.PageTitle = T("Admin.Catalog.Products.AiGenerateFullDescription").Text;
    
    @if (ViewBag.SaveDescription == true)
    {
        
    }
}

@T("Admin.Catalog.Products.AiGenerateFullDescription")

@if (!string.IsNullOrEmpty(Model.GeneratedDescription)) { }
 
@T("Common.Wait")
@Html.Raw(Model.GeneratedDescription)