Skip to content
Snippets Groups Projects
Verified Commit ed491908 authored by ornanovitch's avatar ornanovitch
Browse files

other table lists

parent 23bab4b0
No related branches found
No related tags found
No related merge requests found
......@@ -34,24 +34,28 @@
{{ macros.timeline(user.history, public_only=False) }}
</div>
<div class="col-md-6 col-s-12">
<div class="box">
<div class="box-header">
<div class="card">
<div class="card-header">
<h4>Profile list</h4>
</div>
<div class="box-body table-responsive no-padding">
<table class="table table-hover">
<tr>
<th>{% trans %}Service{% endtrans %}</th>
<th>{% trans %}Username{% endtrans %}</th>
<th>{% trans %}Status{% endtrans %}</th>
</tr>
{% for profile in user.profiles %}
<tr>
<td><a href="{{ url_for("service.details", service_uuid=profile.service.uuid) }}">{{ profile.service.name }}</a></td>
<td><a href="{{ url_for("profile.details", profile_uuid=profile.uuid) }}">{{ profile.username }}</a></td>
<td>{{ macros.profile_status(profile) }}</td>
</tr>
{% endfor %}
<div class="card-body table-responsive p-0">
<table class="table table-striped table-hover text-nowrap">
<thead>
<tr>
<th>{% trans %}Service{% endtrans %}</th>
<th>{% trans %}Username{% endtrans %}</th>
<th>{% trans %}Status{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for profile in user.profiles %}
<tr>
<td><a href="{{ url_for("service.details", service_uuid=profile.service.uuid) }}">{{ profile.service.name }}</a></td>
<td><a href="{{ url_for("profile.details", profile_uuid=profile.uuid) }}">{{ profile.username }}</a></td>
<td>{{ macros.profile_status(profile) }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment