]> git.mxchange.org Git - fba.git/blobdiff - templates/views/list.html
Continued:
[fba.git] / templates / views / list.html
index 27ece0c90304e38123f6961a2109388ea8399049..99d8a415554a9cfe6f3701e2cf5a59e66da4cefa 100644 (file)
@@ -1,10 +1,14 @@
 {% extends "base.html" %}
 
-{% block title %}{% if mode == 'detection_mode' %} - Detection mode {{value}}{% endif %}{% endblock %}
+{% block title %}{% if mode == 'detection_mode' %} - Detection mode {{value}}{% elif mode == 'software' %} - Used software {{value}}{% elif mode == 'command' %} - Command {{value}}{% endif %}{% endblock %}
 
 {% block header %}
     {% if mode == 'detection_mode' %}
         <h1>Instances detected by method {{value}}</h1>
+    {% elif mode == 'software' %}
+        <h1>Instances using software {{value}}</h1>
+    {% elif mode == 'command' %}
+        <h1>Instances found by command {{value}}</h1>
     {% endif %}
 {% endblock %}
 
@@ -27,7 +31,7 @@
             <th>Detection mode</th>
             <th>Command</th>
             <th>First added</th>
-            <th>Last seen</th>
+            <th>Last updated</th>
         </thead>
 
         <tbody>
@@ -55,7 +59,7 @@
                     </td>
                     <td><code>{{row['command']}}</code></td>
                     <td>{{row['first_seen']}}</td>
-                    <td>{{row['last_seen']}}</td>
+                    <td>{{row['last_updated']}}</td>
                 </tr>
         {% endfor %}
         </tbody>