refx & wf actions config
This commit is contained in:
parent
2f3a08829d
commit
d8fa166115
11 changed files with 38 additions and 25 deletions
17
Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
17
Yavsc/Views/FrontOffice/Profiles.cshtml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@model IEnumerable<PerformerProfile>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Book - " + (ViewBag.Activity?.Name ?? SR["Any"]);
|
||||
}
|
||||
<em>@ViewBag.Activity.Description</em>
|
||||
|
||||
@foreach (var profile in Model) {
|
||||
<hr/>
|
||||
@Html.DisplayFor(m=>m)
|
||||
<form action="~/Command/Create" >
|
||||
<input type="hidden" name="id" value="@profile.PerformerId" />
|
||||
<input type="hidden" name="activityCode" value="@ViewBag.Activity.Code" />
|
||||
<input type="submit" value="@SR["Book "+ViewBag.Activity.Code]"/>
|
||||
</form>
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue