Consolidate core templates in mkws.templates directory. MKWS-279
[mkws-moved-to-github.git] / src / mkws-widget-main.templates / Targets.handlebars
diff --git a/src/mkws-widget-main.templates/Targets.handlebars b/src/mkws-widget-main.templates/Targets.handlebars
deleted file mode 100644 (file)
index 99ed801..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-{{!
-Target detail
-
-data:
-  id - target id
-  hits - number of hits for this target
-  diagnostic - 
-  records - 
-  state - target state
-}}
-<table>
-  <thead>
-    <tr>
-      <td>{{{mkws-translate "Target ID"}}}</td>
-      <td>{{{mkws-translate "Hits"}}}</td>
-      <td>{{{mkws-translate "Diags"}}}</td>
-      <td>{{{mkws-translate "Records"}}}</td>
-      <td>{{{mkws-translate "State"}}}</td>
-      </td>
-    </tr>
-  </thead>
-  <tbody>
-  {{#each data}}
-    <tr>
-      <td>{{{id}}}</td>
-      <td>{{hits}}</td>
-      <td>{{diagnostic}}</td>
-      <td>{{records}}</td>
-      <td>{{hits}}</td>
-    </tr>
-  {{/each}}
-  </tbody>
-</table>