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>
|
||||
</tr>
|
||||
{% 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>
|
||||
</div>
|
||||
<div class='col-sm-6'>
|
||||
|
|
|
|||
Loading…
Reference in New Issue