]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 15 Aug 2023 20:48:50 +0000 (22:48 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 15 Aug 2023 20:52:39 +0000 (22:52 +0200)
- links from infos.html view to list.html added

templates/views/infos.html

index c2bf44c00e7ad00541a5e0ea7fccef88eb651261..3421b3b625eb8c7e70a7768b3929a6b71beae707 100644 (file)
 
     <tr>
         <td>Software:</td>
-        <td>{{instance['software']}}</td>
+        <td><a href="list?mode=software&amp;value={{instance['software']}}&amp;amount=50">{{instance['software']}}</a></td>
     </tr>
 
     <tr>
         <td>Originating instance:</td>
-        <td>{% if instance['origin'] != None %}{% with domain=instance['origin'] %}{% include "widgets/links.html" %}{% endwith %}{% else %}-{% endif %}</td>
+        <td>
+            {% if instance['origin'] != None %}
+                {% with domain=instance['origin'] %}{% include "widgets/links.html" %}{% endwith %}
+            {% else %}
+                -
+            {% endif %}
+        </td>
     </tr>
 
     <tr>
         <td>Command:</td>
-        <td><code>{{instance['command']}}</code></td>
+        <td>
+            <code>{{instance['command']}}</code> -
+            <a href="list?mode=command&amp;value={{instance['command']}}&amp;amount=50">Show</a>
+        </td>
     </tr>
 
     <tr>
         <td>Detection mode:</td>
-        <td><em>{{instance['detection_mode']}}</em></td>
+        <td>
+            {% if instance['detection_mode'] != None %}
+                <a href="list?mode=detection_mode&amp;value={{instance['detection_mode']}}&amp;amount=50">{{instance['detection_mode']}}</a>
+            {% else %}
+                -
+            {% endif %}
+        </td>
     </tr>
 
     <tr>