added extension and fixed table header
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s
This commit is contained in:
parent
87401267e1
commit
727a7d3dfb
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
@ -6,6 +6,7 @@
|
|||||||
"github.copilot",
|
"github.copilot",
|
||||||
"github.copilot-chat",
|
"github.copilot-chat",
|
||||||
"anbuselvanrocky.bootstrap5-vscode",
|
"anbuselvanrocky.bootstrap5-vscode",
|
||||||
"hansuxdev.bootstrap5-snippets"
|
"hansuxdev.bootstrap5-snippets",
|
||||||
|
"brapifra.phpserver"
|
||||||
]
|
]
|
||||||
}
|
}
|
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -2,5 +2,7 @@
|
|||||||
"html.format.indentInnerHtml": true,
|
"html.format.indentInnerHtml": true,
|
||||||
"html.format.wrapLineLength": 0,
|
"html.format.wrapLineLength": 0,
|
||||||
"intelephense.environment.documentRoot": "web/",
|
"intelephense.environment.documentRoot": "web/",
|
||||||
"terminal.integrated.splitCwd": "workspaceRoot"
|
"terminal.integrated.splitCwd": "workspaceRoot",
|
||||||
|
"phpserver.port": 8080,
|
||||||
|
"phpserver.relativePath": "web/."
|
||||||
}
|
}
|
@ -20,11 +20,6 @@
|
|||||||
<table class="table" role="grid">
|
<table class="table" role="grid">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<?php foreach (array_keys($userdata[0]) as $key) : ?>
|
|
||||||
<th>
|
|
||||||
<?= $key ?>
|
|
||||||
</th>
|
|
||||||
<?php endforeach; ?>
|
|
||||||
|
|
||||||
<th>
|
<th>
|
||||||
Login
|
Login
|
||||||
@ -32,6 +27,13 @@
|
|||||||
<th>
|
<th>
|
||||||
Edit
|
Edit
|
||||||
</th>
|
</th>
|
||||||
|
<?php foreach (array_keys($userdata[0]) as $key) : ?>
|
||||||
|
<th>
|
||||||
|
<?= $key ?>
|
||||||
|
</th>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
Reference in New Issue
Block a user