Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Hiboo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACIDES
Hiboo
Commits
91f27ac4
Verified
Commit
91f27ac4
authored
3 years ago
by
ornanovitch
Browse files
Options
Downloads
Patches
Plain Diff
small corrections: indent size and remove trailing div
parent
bc48d4c3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!24
Admin lte3 corrections
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hiboo/application/templates/application_synapse/room.html
+34
-31
34 additions, 31 deletions
hiboo/application/templates/application_synapse/room.html
hiboo/application/templates/application_synapse/rooms.html
+34
-30
34 additions, 30 deletions
hiboo/application/templates/application_synapse/rooms.html
with
68 additions
and
61 deletions
hiboo/application/templates/application_synapse/room.html
+
34
−
31
View file @
91f27ac4
...
...
@@ -2,37 +2,40 @@
{{ macros.form(form) }}
{% if room and room.get("room_id") %}
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<div
class=
"table-responsive p-0"
>
<table
class=
"table table-striped table-hover text-nowrap"
>
<thead>
<tr>
<th>
{% trans %}Member{% endtrans %}
</th>
</tr>
</thead>
<tbody>
{% for member, profile in members.items() %}
<tr>
{% if profile %}
<td><a
href=
"{{ url_for("
profile.action
",
service_uuid=
service.uuid,
profile_uuid=
profile.uuid,
action=
"get_user_details"
)
}}"
>
{{ member }}
</a></td>
{% else %}
<td>
{{ member }}
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div
class=
"col-md-6"
>
<div
class=
"table-responsive p-0"
>
<table
class=
"table table-striped table-hover text-nowrap"
>
<thead>
<tr>
<th>
{% trans %}Member{% endtrans %}
</th>
</tr>
</thead>
<tbody>
{% for member, profile in members.items() %}
<tr>
{% if profile %}
<td>
<a
href=
"{{ url_for("
profile.action
",
service_uuid=
service.uuid,
profile_uuid=
profile.uuid,
action=
"get_user_details"
)
}}"
>
{{ member }}
</a>
</td>
{% else %}
<td>
{{ member }}
</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div
class=
"col-md-6"
>
<dl>
{% for name, value in room.items() %}
<dt>
{{ name }}
</dt>
<dd>
{{ value }}
</dd>
{% endfor %}
</dl>
</div>
</div>
</div>
</div>
<div
class=
"col-md-6"
>
<dl>
{% for name, value in room.items() %}
<dt>
{{ name }}
</dt>
<dd>
{{ value }}
</dd>
{% endfor %}
</dl>
</div>
</div>
{% endif %}
This diff is collapsed.
Click to expand it.
hiboo/application/templates/application_synapse/rooms.html
+
34
−
30
View file @
91f27ac4
...
...
@@ -2,36 +2,40 @@
{{ macros.form(form) }}
{% if results %}
<div
class=
"row"
>
<div
class=
"col"
>
<div
class=
"card"
>
<div
class=
"card-body table-responsive p-0"
>
<table
class=
"table table-striped table-hover text-nowrap"
>
<thead>
<tr>
<th>
{% trans %}RoomID{% endtrans %}
</th>
<th>
{% trans %}Alias{% endtrans %}
</th>
<th>
{% trans %}Version{% endtrans %}
</th>
<th>
{% trans %}Name{% endtrans %}
</th>
<th>
{% trans %}Members (local){% endtrans %}
</th>
<th>
{% trans %}Properties{% endtrans %}
</th>
</tr>
</thead>
<tbody>
{% for room in results["rooms"] %}
<tr>
<td><a
href=
"{{ url_for("
service.action
",
service_uuid=
service.uuid,
action=
"get_room"
,
roomid=
room["room_id"])
}}"
>
{{ room["room_id"] }}
</a></td>
<td>
{{ room["canonical_alias"] }}
</td>
<td>
{{ room["name"] }}
</td>
<td>
{{ room["version"] }}
</td>
<td>
{{ room["joined_members"] }} ({{ room["joined_local_members"] }})
</td>
<td>
{{ room["join_rules"] }}, {{ room["history_visibility"] }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div
class=
"col"
>
<div
class=
"card"
>
<div
class=
"card-body table-responsive p-0"
>
<table
class=
"table table-striped table-hover text-nowrap"
>
<thead>
<tr>
<th>
{% trans %}RoomID{% endtrans %}
</th>
<th>
{% trans %}Alias{% endtrans %}
</th>
<th>
{% trans %}Version{% endtrans %}
</th>
<th>
{% trans %}Name{% endtrans %}
</th>
<th>
{% trans %}Members (local){% endtrans %}
</th>
<th>
{% trans %}Properties{% endtrans %}
</th>
</tr>
</thead>
<tbody>
{% for room in results["rooms"] %}
<tr>
<td>
<a
href=
"{{ url_for("
service.action
",
service_uuid=
service.uuid,
action=
"get_room"
,
roomid=
room["room_id"])
}}"
>
{{ room["room_id"] }}
</a>
</td>
<td>
{{ room["canonical_alias"] }}
</td>
<td>
{{ room["name"] }}
</td>
<td>
{{ room["version"] }}
</td>
<td>
{{ room["joined_members"] }} ({{ room["joined_local_members"] }})
</td>
<td>
{{ room["join_rules"] }}, {{ room["history_visibility"] }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endif %}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment