refactor(itam): software index does not require created and modified date

info belongs inside item view as a detail

!10
This commit is contained in:
2024-05-23 22:23:06 +09:30
parent 2fcbb1ead7
commit 23e661cef0

View File

@ -11,8 +11,6 @@
<th>Name</th>
<th>Publisher</th>
<th>Category</th>
<th>Created</th>
<th>Modified</th>
<th>Organization</th>
<th>&nbsp;</th>
</tr>
@ -27,8 +25,6 @@
{% endif %}
</td>
<td>{{ software.category }}</td>
<td>{{ software.created }}</td>
<td>{{ software.modified }}</td>
<td>{% if software.is_global %}Global{% else %}{{ software.organization }}{% endif %}</td>
<td><a href="{% url 'ITAM:_software_delete' pk=software.id %}">Delete</a></td>
</tr>