From a45bea4b2e8b84ee8d0015993a14ae2474fe8a9b Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 23 Jan 2021 11:14:43 +0100 Subject: [PATCH] group: add a pacman install example --- app/templates/group.html | 36 ++++++++++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/app/templates/group.html b/app/templates/group.html index 4eeda4f..abb6449 100644 --- a/app/templates/group.html +++ b/app/templates/group.html @@ -5,16 +5,36 @@

Group: {{ name }}

-
Packages that are part of the group
+
{{ packages|length }} packages
- + + {% if not packages %} + Group doesn't exist + {% else %} +
+ +
Installation:
+
+
+
+
pacman -S {{ name }}
+
+ +
+
+ +
Packages:
+
+ +
+
+ {% endif %} +