]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 29 Jul 2024 20:14:22 +0000 (22:14 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 29 Jul 2024 20:17:35 +0000 (22:17 +0200)
- added view for recently updated instances
- renamed 'recently' to 'added' for not confusing it

daemon.py
templates/views/index.html
templates/views/list.html

index 9c76df9c4ac0d096631119bc3b016ead821f4559..d0b146f951ea9d3799e833440bd49326905444f1 100755 (executable)
--- a/daemon.py
+++ b/daemon.py
@@ -127,11 +127,18 @@ WHERE {mode} = ? \
 ORDER BY domain \
 LIMIT ?", [value, amount]
         )
-    elif mode == "recently":
+    elif mode == "added":
         database.cursor.execute(
             f"SELECT * \
 FROM instances \
 ORDER BY first_seen DESC \
+LIMIT ?", [amount]
+        )
+    elif mode == "updated":
+        database.cursor.execute(
+            f"SELECT * \
+FROM instances \
+ORDER BY last_updated DESC \
 LIMIT ?", [amount]
         )
     else:
index 0b607dccbf4e565ba8a8ffb30d26d1eb38d7ce75..3286a4e0a836e7d04a89f0cdd122de4000288d56 100644 (file)
         <li><a href="scoreboard?mode=block_level&amp;amount=20">Block level statistics</a></li>
     </ul>
 
-    <h2>Recently added:</h2>
+    <h2>Recently ...:</h2>
     <ul class="nav">
-        <li><a href="list?mode=recently&amp;value=1&amp;amount=50">50 instances</a></li>
+        <li><a href="list?mode=added&amp;value=1&amp;amount=50">50 added instances</a></li>
+        <li><a href="list?mode=updated&amp;value=1&amp;amount=50">50 updated instances</a></li>
     </ul>
 {% endblock %}
 {% block footer %}
index 8c5525723496a1a7ced21a60b61713b73ec31408..5a6b86c9acc23d1a399d3dd755bb3e87b704e50b 100644 (file)
@@ -5,7 +5,8 @@
     {% elif mode == 'original_software' %} Original software {{value}}
     {% elif mode == 'software' %} Used software {{value}}
     {% elif mode == 'command' %} Command {{value}}
-    {% elif mode == 'recently' %} {{amount}} recently added instances
+    {% elif mode == 'added' %} {{amount}} recently added instances
+    {% elif mode == 'updated' %} {{amount}} recently updated instances
     {% endif %}
 {% endblock %}
 
         <h1>Instances found by command {{value}}</h1>
     {% elif mode == 'origin' %}
         <h1>Instances originated from {{value}}</h1>
-    {% elif mode == 'recently' %}
+    {% elif mode == 'added' %}
         <h1>{{amount}} recently added instances</h1>
+    {% elif mode == 'updated' %}
+        <h1>{{amount}} recently updated instances</h1>
     {% else %}
         <h1 style="color: red">mode={{mode}} not supported</h1>
     {% endif %}