selection of resources (pending), localstorage js enabled class
[myslice.git] / rest / templates / table-default.html
index 79d8194..d971306 100644 (file)
@@ -1,32 +1,15 @@
 {% load rest_filters %}
 <thead>
 <tr>
-       {% for p in properties %}
-       <th>
-               {{ p }}
-       </th>
-       {% endfor %}
+       {% if "checkbox" in options %}<th><input type="checkbox" name="{{ id }}" /></th>{% endif %}
+       {% for f in fields %}<th>{{ f }}</th>{% endfor %}
 </tr>
 </thead>
 <tbody>
 {% for d in data %}
-<tr>
-       {% for p in properties %}
-       <td>
-               <div class="line1">{{ d|key:p }}</div>
-       </td>
-       {% endfor %}
+<tr data-key="{{ d|key:id }}">
+       {% if "checkbox" in options %}<td><input type="checkbox" name="{{ id }}" value="{{ d|key:id }}" /></td>{% endif %}
+       {% for f in fields %}<td><div class="line1">{{ d|key:f }}</div></td>{% endfor %}
 </tr>
 {% endfor %}
-</tbody>
-<!-- 
-"component_name",
- "tags", 
- "component_id", 
- "interfaces", 
- "component_manager_id",
-  "longitude", "country",
-   "exclusive", "hrn", "hardware_types",
-    "slice", "network_hrn",
-     "hostname", "urn", "x", "y", "z", 
-     "initscripts", "location", "latitude", "boot_state", "type" -->
\ No newline at end of file
+</tbody>
\ No newline at end of file