| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- @page
- @model Admin.Pages.Server.EnvModel
- @{
- ViewData["Title"] = "환경 변수";
- }
- <div class="container-fluid">
- <h3 class="pb-2">@ViewData["Title"]</h3>
- @if (Model.EnvVars != null)
- {
- <table class="table table-striped table-bordered table-sm">
- <colgroup>
- <col style="width: 20%;" />
- <col style="width: 80%" />
- </colgroup>
- <thead>
- <tr class="text-center">
- <th>Key</th>
- <th>Value</th>
- </tr>
- </thead>
- <tbody>
- @foreach (var row in Model.EnvVars)
- {
- <tr class="align-middle">
- <td class="p-3">@row.Key</td>
- <td>
- <textarea class="form-control" rows="1" readonly disabled>@row.Value</textarea>
- </td>
- </tr>
- }
- </tbody>
- </table>
- }
- else
- {
- <p>Environment variables not available.</p>
- }
- </div>
|