Browse Source

Removed ItemGroup in bookstore sample web proj

pull/395/head
Yunus Emre Kalkan 8 years ago
parent
commit
30d27f2062
  1. 4
      samples/BookStore/src/Acme.BookStore.Web/Acme.BookStore.Web.csproj
  2. 18
      samples/BookStore/src/Acme.BookStore.Web/Pages/Books/Index.cshtml

4
samples/BookStore/src/Acme.BookStore.Web/Acme.BookStore.Web.csproj

@ -17,10 +17,6 @@
<None Remove="Logs\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Pages\Books\index.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.1" />
<PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />

18
samples/BookStore/src/Acme.BookStore.Web/Pages/Books/Index.cshtml

@ -3,7 +3,7 @@
@inherits Acme.BookStore.Pages.BookStorePageBase
@model IndexModel
@section scripts
{
{
<abp-script src="/Pages/Books/index.js" />
}
<abp-card>
@ -23,14 +23,14 @@
<abp-card-body>
<abp-table striped-rows="true" id="BooksTable">
<thead>
<tr>
<th>@L["Actions"]</th>
<th>@L["Name"]</th>
<th>@L["Type"]</th>
<th>@L["PublishDate"]</th>
<th>@L["Price"]</th>
<th>@L["CreationTime"]</th>
</tr>
<tr>
<th>@L["Actions"]</th>
<th>@L["Name"]</th>
<th>@L["Type"]</th>
<th>@L["PublishDate"]</th>
<th>@L["Price"]</th>
<th>@L["CreationTime"]</th>
</tr>
</thead>
</abp-table>
</abp-card-body>

Loading…
Cancel
Save