Skip to content

Commit

Permalink
Update planned features, add templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorlin committed Dec 31, 2023
1 parent e22f20b commit e9b5fe2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ These are things I've been thinking about, but haven't implemented.

- Storage devices
- Size of device
- Extends Component Assignment to allow you to select a Storage Interface
- History tracking
- Storage devices can live for a long time. It would be nice to be able to track changes to them over time.
Where was this drive installed? In which server? Which slot? When was it replaced? What was it replaced with?
Is it deprecated? Is it active? Is it dead? Was it RMA'd and replaced with a new drive?
- Extend Component Assignment to allow you to select a Storage Interface
- Allows you to add Storage Interfaces to Device Types and Devices
- SAS cabling/topology (potentially with visualisation as a stretch goal?)
- Performance classes of drives (enterprise, WORM, SMR etc)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{% extends 'generic/object.html' %}{% block content %}
<div class="row mb-3">
<div class="col col-md-6">
<div class="card">
<h5 class="card-header">Storage Device</h5>
<div class="card-body">
<table class="table table-hover attr-table">
<tr>
<th scope="row">Name</th>
<td>{{ object.name }}</td>
</tr>
<tr>
<th scope="row">Storage Type</th>
<td>{{ object.storage_device_type }}</td>
</tr>
<tr>
<th scope="row">Serial Number</th>
<td>{{ object.serial }}</td>
</tr>
<tr>
<th scope="row">Mount Point</th>
<td>{{ object.mount_point }}</td>
</tr>
</table>
</div>
</div>
{% include 'inc/panels/custom_fields.html' %}
</div>
<div class="col col-md-6">
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
</div>
</div>
{% endblock content %}

0 comments on commit e9b5fe2

Please sign in to comment.