From a4299460548f9558f4c5f2bcca94fac800f3d0de Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Sun, 13 Oct 2019 00:17:46 +0200 Subject: devel: remove unrequired css classes from report view --- templates/devel/packages.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/devel/packages.html b/templates/devel/packages.html index 762fc6f0..e0843efc 100644 --- a/templates/devel/packages.html +++ b/templates/devel/packages.html @@ -52,7 +52,7 @@ {% for pkg in packages %} - + {{ pkg.arch.name }} {{ pkg.repo.name|capfirst }} {% pkg_details_link pkg %} -- cgit v1.2.3-55-g3dc8 From c46444aa9722ac4e9faded36caa4b7f844d3452d Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Sun, 13 Oct 2019 00:33:26 +0200 Subject: devel: truncate description of todolist overview Some todolists have an elaborate description which takes up a lot of space, limit these two 50 words. --- templates/devel/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/devel/index.html b/templates/devel/index.html index cba57210..5adec682 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -140,7 +140,7 @@ title="View todo list: {{ todo.name }}">{{ todo.name }} {{ todo.created|date }} {{ todo.creator.get_full_name }} - {{ todo.description|urlize }} + {{ todo.description|urlize|truncatewords:"50" }} {{ todo.pkg_count }} {{ todo.incomplete_count }} -- cgit v1.2.3-55-g3dc8 From 10ff1df6efde498cd745a42f3da8d91b306b5d86 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Sun, 13 Oct 2019 12:26:58 +0200 Subject: devel: remove package description from reports The description doesn't add a lot of useful information to the report. --- templates/devel/packages.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/templates/devel/packages.html b/templates/devel/packages.html index e0843efc..33bc4428 100644 --- a/templates/devel/packages.html +++ b/templates/devel/packages.html @@ -41,7 +41,6 @@ Repo Name Version - Description Last Updated Build Date Flag Date @@ -61,7 +60,6 @@ {% else %} {{ pkg.full_version }} {% endif %} - {{ pkg.pkgdesc }} {{ pkg.last_update|date }} {{ pkg.build_date|date }} {{ pkg.flag_date|date }} -- cgit v1.2.3-55-g3dc8