mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
888 B
21 lines
888 B
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@using Volo.Abp.SettingManagement.Localization
|
|
@inject IHtmlLocalizer<AbpSettingManagementResource> L
|
|
@model Volo.Abp.SettingManagement.Web.Pages.SettingManagement.Components.TimeZoneSettingGroup.TimeZoneSettingGroupViewComponent.UpdateTimezoneSettingsViewModel
|
|
|
|
<abp-script src="/Pages/SettingManagement/Components/TimeZoneSettingGroup/Default.js" />
|
|
|
|
<form id="TimeZoneSettingsForm" method="post">
|
|
<abp-row>
|
|
<abp-column size-md="_12">
|
|
<div>
|
|
<abp-select asp-for="Timezone" asp-items="@Model.TimeZoneItems" info="@L["TimezoneHelpText"].Value" />
|
|
</div>
|
|
<div>
|
|
<abp-button button-type="Primary" type="submit">
|
|
<i class="fa fa-save"></i> @L["Save"]
|
|
</abp-button>
|
|
</div>
|
|
</abp-column>
|
|
</abp-row>
|
|
</form>
|
|
|