Parcourir la source

Show mac/SN in member loan view

Jocelyn Delande il y a 9 ans
Parent
commit
31d889a058

+ 4 - 1
hardware_provisioning/templates/hardware_provisioning/list.html

@@ -9,6 +9,8 @@
             <th>Type de matériel</th>
             <th>Matériel prêté</th>
             <th>Date de prêt</th>
+            <th>Addr. MAC</th>
+            <th>Num. de série</th>
         </tr>
     </thead>
     <tbody>
@@ -17,10 +19,11 @@
             <td>{{ loan.item.type }}</td>
             <td>{{ loan.item }}</a></td>
             <td>{{ loan.loan_date }}</td>
+            <td>{{ loan.item.mac_address|default:"n/a" }}</td>
+            <td>{{ loan.item.serial|default:"n/a" }}</td>
         </tr>
         {% endfor %}
     </tbody>
 </table>
 
 {% endblock %}
-