@{
if (Model.content.ContentType == UtilsController.GetContentType.PICTURE_FILE)
{
}
}
@{
if (Model.content.ContentType == UtilsController.GetContentType.TEXT_TYPE)
{
}
}
@{
if (nameCulture == "vi")
{
@Model.content.NameGlobal
}
else
{
@Model.content.NameLocal
}
}
@{
if (Model.content.ContentType == UtilsController.GetContentType.TEXT_TYPE)
{
if (nameCulture == "vi")
{
@Html.Raw(@Model.content.ContentGlobal)
}
else
{
@Html.Raw(@Model.content.ContentLocal)
}
}
else
{

}
}
@{
if (Model.content.ContentType == UtilsController.GetContentType.PICTURE_FILE)
{
}
}