[odrs-web/oscp] Make the list of reviews nicer on the eye
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [odrs-web/oscp] Make the list of reviews nicer on the eye
- Date: Wed, 3 Jul 2019 20:22:20 +0000 (UTC)
commit 98f2d0512fc697ad46a076c2e688ea007ed86b10
Author: Richard Hughes <richard hughsie com>
Date: Wed Jul 3 21:22:01 2019 +0100
Make the list of reviews nicer on the eye
app_data/odrs/templates/show-all.html | 46 ++++++++++++++---------------------
app_data/odrs/templates/show.html | 4 +--
2 files changed, 19 insertions(+), 31 deletions(-)
---
diff --git a/app_data/odrs/templates/show-all.html b/app_data/odrs/templates/show-all.html
index 344fd46..19059fc 100644
--- a/app_data/odrs/templates/show-all.html
+++ b/app_data/odrs/templates/show-all.html
@@ -9,47 +9,37 @@
</p>
{% else %}
<table class="table table-hover table-responsive">
- <tr>
- <th>#</th>
- <th>Created / Deleted</th>
- <th>Application</th>
- <th>Version</th>
- <th>Rating</th>
- <th>K↑</th>
- <th>K↓</th>
- <th>Distro</th>
- <th>Locale</th>
- <th>Name</th>
- <th>Summary</th>
+ <tr class="row">
+ <th class="col-sm-3">Application</th>
+ <th class="col-sm-1">Version</th>
+ <th class="col-sm-1">Rating</th>
+ <th class="col-sm-1">Locale</th>
+ <th class="col-sm-2">Name</th>
+ <th class="col-sm-3">Summary</th>
+ <th class="col-sm-1"> </th>
</tr>
{% for r in reviews %}
- <tr>
- <td><a href="{{url_for('.admin_show_review', review_id=r.review_id)}}">{{r.review_id}}</a></td>
- <td>
- {{r.date_created}}
-{% if r.date_deleted %}
- <br/>
- <i class="important">{{r.date_deleted}}</i>
-{% endif %}
- </td>
+ <tr class="row">
<td>{{r.app_id.replace('.desktop', '').replace('.Application', '')}}</td>
<td>{{r.version}}</td>
- <td>{{format_rating(r.rating)}}</td>
- <td>{{r.karma_up}}</td>
+ <td>
+ {{format_rating(r.rating)}}
+ ({{r.karma_up}}↑, {{r.karma_down}}↓)
{% if r.reported > 0 %}
- <td><i class="important">{{r.karma_down}}</i></td>
-{% else %}
- <td>{{r.karma_down}}</td>
+ [{{r.reported}}]
{% endif %}
- <td>{{r.distro.replace(' GNU/Linux', '')}}</td>
+ </td>
<td>{{r.locale}}</td>
{% if r.user_display %}
<td>{{format_truncate(r.user_display, 15)}}</td>
{% else %}
<td><i>Unknown</i></td>
{% endif %}
- <td>{{format_truncate(r.summary, 15)}}</td>
+ <td>{{format_truncate(r.summary, 30)}}</td>
+ <td>
+ <a class="btn btn-info" href="{{url_for('.admin_show_review', review_id=r.review_id)}}">Details</a>
+ </td>
</tr>
{% endfor %}
diff --git a/app_data/odrs/templates/show.html b/app_data/odrs/templates/show.html
index a1fd9c3..ca7971c 100644
--- a/app_data/odrs/templates/show.html
+++ b/app_data/odrs/templates/show.html
@@ -121,7 +121,7 @@
</td>
</tr>
</table>
- <a class="card-link btn btn-action" type="submit">Modify</a>
+ <button class="card-link btn btn-action" type="submit">Modify</button>
<a class="card-link btn btn-danger pull-right" href="{{url_for('.admin_user_ban',
user_hash=r.user.user_hash)}}">Ban & Delete All</a>
<a class="card-link btn btn-warning pull-right" href="{{url_for('.admin_delete_force',
review_id=r.review_id)}}">Remove Forever</a>
</div>
@@ -129,6 +129,4 @@
</form>
-<hr/>
-
{% endblock %}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]