Skip to content
Snippets Groups Projects
Select Git revision
  • 597df17735ba37c1777947b96131183d1f6c7d34
  • master default protected
  • 2023-ujoncdelutan
  • 2023-update
  • 1.4.7 protected
  • 1.4.6 protected
  • 1.4.5 protected
  • 1.4.4 protected
  • 1.4.3 protected
  • 1.4.2 protected
  • 1.4.1 protected
  • 1.4.0 protected
  • 1.3.19 protected
  • 1.3.18 protected
  • 1.3.17 protected
  • 1.3.16 protected
  • 1.3.15 protected
  • 1.3.14 protected
  • 1.3.13 protected
  • 1.3.12 protected
  • 1.3.10 protected
  • 1.3.11 protected
  • 1.3.9 protected
  • 1.3.8 protected
24 results

TraineeTableRow.js

Blame
  • Index.cshtml 928 B
    @page
    @model Rendelosch.Pages.Index
    @{
        ViewData["Title"] = "Home";
    }
    
    <div class="container-lg">
        <a class="btn btn-primary my-4" asp-page="CreateProductForm">Create Product Form</a>
        <div>
            @{
                foreach (var productForm in Model.Repository.GetProductForms())
                {
                    <div class="card mb-3">
                        <div class="card-body">
                            <div class="d-flex flex-row align-items-center">
                                <a asp-page="SubmitForm" asp-route-id="@productForm.Id">
                                    <h5 class="card-title m-0 me-3">@productForm.Title</h5>
                                </a>
                                <a class="btn btn-outline-primary mx-1" asp-page="SubmissionsPage" asp-route-id="@productForm.Id">Submissions</a>
                            </div>
                        </div>
                    </div>
                }
            }
        </div>
    </div>