mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Display creation information in part detail page
This commit is contained in:
parent
2b08b0f2b9
commit
8186e4bab0
@ -83,6 +83,22 @@
|
|||||||
<td>{{ part.minimum_stock }}</td>
|
<td>{{ part.minimum_stock }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<tr>
|
||||||
|
<td><b>{% trans "Creation Date" %}</b></td>
|
||||||
|
<td>{{ part.creation_date }}</td>
|
||||||
|
</tr>
|
||||||
|
{% if part.creation_user %}
|
||||||
|
<tr>
|
||||||
|
<td><b>{% trans "Created By" %}</b></td>
|
||||||
|
<td>{{ part.creation_user }}</td>
|
||||||
|
</tr>
|
||||||
|
{% endif %}
|
||||||
|
{% if part.responsible %}
|
||||||
|
<tr>
|
||||||
|
<td><b>{% trans "Responsible User" %}</b></td>
|
||||||
|
<td>{{ part.responsible }}</td>
|
||||||
|
</tr>
|
||||||
|
{% endif %}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div class='col-sm-6'>
|
<div class='col-sm-6'>
|
||||||
|
Loading…
Reference in New Issue
Block a user