include "all" meta button on profile
include full humanizer package to library bug in russian translations
This commit is contained in:
parent
c783a04a52
commit
5842073f91
@ -32,11 +32,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="FluentValidation" Version="9.1.3" />
|
<PackageReference Include="FluentValidation" Version="9.1.3" />
|
||||||
<PackageReference Include="Humanizer.Core" Version="2.8.26" />
|
<PackageReference Include="Humanizer" Version="2.8.26" />
|
||||||
<PackageReference Include="Humanizer.Core.de" Version="2.8.26" />
|
|
||||||
<PackageReference Include="Humanizer.Core.es" Version="2.8.26" />
|
|
||||||
<PackageReference Include="Humanizer.Core.pt" Version="2.8.26" />
|
|
||||||
<PackageReference Include="Humanizer.Core.ru" Version="2.8.26" />
|
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.7" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.7" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.7" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.7" />
|
||||||
|
@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Builder;
|
|||||||
using Microsoft.AspNetCore.Hosting;
|
using Microsoft.AspNetCore.Hosting;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Mvc.ApplicationParts;
|
using Microsoft.AspNetCore.Mvc.ApplicationParts;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Razor;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using SharedLibraryCore;
|
using SharedLibraryCore;
|
||||||
|
@ -121,9 +121,13 @@
|
|||||||
<div class="row border-bottom">
|
<div class="row border-bottom">
|
||||||
<div class="text-center bg-dark p-2 pl-3 pr-4 text-muted col-12 col-md-auto" id="filter_meta_container_button">
|
<div class="text-center bg-dark p-2 pl-3 pr-4 text-muted col-12 col-md-auto" id="filter_meta_container_button">
|
||||||
<span class="oi oi-sort-ascending"></span>
|
<span class="oi oi-sort-ascending"></span>
|
||||||
<a>Filter Meta</a>
|
<a>@ViewBag.Localization["WEBFRONT_CLIENT_META_FILTER"]</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-none d-md-flex flex-fill" id="filter_meta_container">
|
<div class="d-none d-md-flex flex-fill" id="filter_meta_container">
|
||||||
|
<a asp-action="ProfileAsync" asp-controller="Client"
|
||||||
|
class="nav-link p-2 pl-3 pr-3 text-center col-12 col-md-auto text-md-left @(!Model.MetaFilterType.HasValue ? "btn-primary text-white" : "text-muted")"
|
||||||
|
asp-route-id="@Model.ClientId">@ViewBag.Localization["META_TYPE_ALL_NAME"]</a>
|
||||||
|
|
||||||
@foreach (MetaType type in Enum.GetValues(typeof(MetaType)))
|
@foreach (MetaType type in Enum.GetValues(typeof(MetaType)))
|
||||||
{
|
{
|
||||||
if (!ignoredMetaTypes.Contains(type))
|
if (!ignoredMetaTypes.Contains(type))
|
||||||
|
@ -64,8 +64,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" />
|
|
||||||
<PackageReference Include="BuildWebCompiler" Version="1.12.405" />
|
<PackageReference Include="BuildWebCompiler" Version="1.12.405" />
|
||||||
|
<PackageReference Include="BundlerMinifier.Core" Version="3.2.449" />
|
||||||
<PackageReference Include="FluentValidation.AspNetCore" Version="9.1.2" />
|
<PackageReference Include="FluentValidation.AspNetCore" Version="9.1.2" />
|
||||||
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="2.1.76" />
|
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="2.1.76" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user