mirror of https://github.com/abpframework/eventhub
5 changed files with 55 additions and 15 deletions
@ -0,0 +1,8 @@ |
|||
<abp-card class="mb-3"> |
|||
<abp-card-body> |
|||
<abp-card-title>Attendees</abp-card-title> |
|||
<abp-card-text> |
|||
TODO |
|||
</abp-card-text> |
|||
</abp-card-body> |
|||
</abp-card> |
|||
@ -0,0 +1,21 @@ |
|||
using System.Threading.Tasks; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Widgets; |
|||
|
|||
namespace EventHub.Web.Pages.Events.Components.AttendeesArea |
|||
{ |
|||
[Widget] |
|||
public class AttendeesAreaViewComponent : AbpViewComponent |
|||
{ |
|||
public AttendeesAreaViewComponent() |
|||
{ |
|||
|
|||
} |
|||
|
|||
public async Task<IViewComponentResult> InvokeAsync() |
|||
{ |
|||
return View(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,8 @@ |
|||
@using EventHub.Localization |
|||
@using Microsoft.AspNetCore.Mvc.Localization |
|||
@inject IHtmlLocalizer<EventHubResource> L |
|||
<abp-card class="mb-3"> |
|||
<abp-card-body> |
|||
<a abp-button="Primary" href="#"> @L["RegisterNow"]</a> |
|||
</abp-card-body> |
|||
</abp-card> |
|||
@ -1,9 +1,21 @@ |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
using System.Threading.Tasks; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Widgets; |
|||
|
|||
namespace EventHub.Web.Pages.Events.Components.RegistrationArea |
|||
{ |
|||
[Widget] |
|||
public class RegistrationAreaViewComponent : AbpViewComponent |
|||
{ |
|||
|
|||
public RegistrationAreaViewComponent() |
|||
{ |
|||
|
|||
} |
|||
|
|||
public async Task<IViewComponentResult> InvokeAsync() |
|||
{ |
|||
return View(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue