61 lines
2.8 KiB
HTML
61 lines
2.8 KiB
HTML
|
|
{# HTMX fragment: Captured Credentials table #}
|
||
|
|
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;">
|
||
|
|
<span class="pagination-info">Page {{ pagination.page }}/{{ pagination.total_pages }} — {{ pagination.total }} total</span>
|
||
|
|
<div style="display: flex; gap: 8px;">
|
||
|
|
<button class="pagination-btn"
|
||
|
|
hx-get="{{ dashboard_path }}/htmx/credentials?page={{ pagination.page - 1 }}&sort_by={{ sort_by }}&sort_order={{ sort_order }}"
|
||
|
|
hx-target="closest .htmx-container"
|
||
|
|
hx-swap="innerHTML"
|
||
|
|
{% if pagination.page <= 1 %}disabled{% endif %}>Prev</button>
|
||
|
|
<button class="pagination-btn"
|
||
|
|
hx-get="{{ dashboard_path }}/htmx/credentials?page={{ pagination.page + 1 }}&sort_by={{ sort_by }}&sort_order={{ sort_order }}"
|
||
|
|
hx-target="closest .htmx-container"
|
||
|
|
hx-swap="innerHTML"
|
||
|
|
{% if pagination.page >= pagination.total_pages %}disabled{% endif %}>Next</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<table>
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>#</th>
|
||
|
|
<th>IP Address</th>
|
||
|
|
<th>Username</th>
|
||
|
|
<th>Password</th>
|
||
|
|
<th>Path</th>
|
||
|
|
<th class="sortable {% if sort_by == 'timestamp' %}{{ sort_order }}{% endif %}"
|
||
|
|
hx-get="{{ dashboard_path }}/htmx/credentials?page=1&sort_by=timestamp&sort_order={% if sort_by == 'timestamp' and sort_order == 'desc' %}asc{% else %}desc{% endif %}"
|
||
|
|
hx-target="closest .htmx-container"
|
||
|
|
hx-swap="innerHTML">
|
||
|
|
Time
|
||
|
|
</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{% for cred in items %}
|
||
|
|
<tr class="ip-row" data-ip="{{ cred.ip | e }}">
|
||
|
|
<td class="rank">{{ loop.index + (pagination.page - 1) * pagination.page_size }}</td>
|
||
|
|
<td class="ip-clickable"
|
||
|
|
hx-get="{{ dashboard_path }}/htmx/ip-detail/{{ cred.ip | e }}"
|
||
|
|
hx-target="next .ip-stats-row .ip-stats-dropdown"
|
||
|
|
hx-swap="innerHTML"
|
||
|
|
@click="toggleIpDetail($event)">
|
||
|
|
{{ cred.ip | e }}
|
||
|
|
</td>
|
||
|
|
<td>{{ cred.username | default('N/A') | e }}</td>
|
||
|
|
<td>{{ cred.password | default('N/A') | e }}</td>
|
||
|
|
<td>{{ cred.path | default('') | e }}</td>
|
||
|
|
<td>{{ cred.timestamp | format_ts }}</td>
|
||
|
|
</tr>
|
||
|
|
<tr class="ip-stats-row" style="display: none;">
|
||
|
|
<td colspan="6" class="ip-stats-cell">
|
||
|
|
<div class="ip-stats-dropdown">
|
||
|
|
<div class="loading">Loading stats...</div>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{% else %}
|
||
|
|
<tr><td colspan="6" style="text-align: center;">No credentials captured</td></tr>
|
||
|
|
{% endfor %}
|
||
|
|
</tbody>
|
||
|
|
</table>
|