Browse Source

Set page title in Account Manage page

pull/24895/head
maliming 1 month ago
parent
commit
e74e199b97
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 3
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml

3
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml

@ -3,11 +3,14 @@
@using Volo.Abp.Account.Localization
@using Volo.Abp.Account.Web.Pages.Account
@using Volo.Abp.AspNetCore.Mvc.UI.Theming
@using Volo.Abp.AspNetCore.Mvc.UI.Layout;
@inject IThemeManager ThemeManager
@inject IPageLayout PageLayout
@inject IHtmlLocalizer<AccountResource> L
@model ManageModel
@{
Layout = ThemeManager.CurrentTheme.GetApplicationLayout();
PageLayout.Content.Title = L["MyAccount"].Value;
}
@section scripts {
<abp-script-bundle name="@typeof(ManageModel).FullName"/>

Loading…
Cancel
Save