mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-03 09:44:41 +02:00
66 lines
No EOL
2.2 KiB
Twig
66 lines
No EOL
2.2 KiB
Twig
{% import "helper.twig" as helper %}
|
|
|
|
<table class="table table-striped table-hover table-sm w-100 table-responsive-sm">
|
|
<tbody>
|
|
<tr> {# Creation date #}
|
|
<td>{% trans %}createdAt{% endtrans %}</td>
|
|
<td>{{ part.addedDate | format_datetime("long")}}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>{% trans %}user.creating_user{% endtrans %}</td>
|
|
<td>{% if is_granted('show_history', part) %}
|
|
{{ creating_user(part).fullName(true) ?? 'Unknown'|trans }}
|
|
{% else %}
|
|
{% trans %}accessDenied{% endtrans %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
|
|
<tr> {# Last modified date #}
|
|
<td>{% trans %}lastModified{% endtrans %}</td>
|
|
<td>{{ part.lastModified | format_datetime("long")}}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>{% trans %}user.last_editing_user{% endtrans %}</td>
|
|
<td>{% if is_granted('show_history', part) %}
|
|
{{ last_editing_user(part).fullName(true) ?? 'Unknown'|trans }}
|
|
{% else %}
|
|
{% trans %}accessDenied{% endtrans %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
|
|
<tr> {# ID #}
|
|
<td>{% trans %}id.label{% endtrans %}</td>
|
|
<td>{{ part.iD }}</td>
|
|
</tr>
|
|
|
|
<tr> {# IPN #}
|
|
<td>{% trans %}part.edit.ipn{% endtrans %}</td>
|
|
<td>{{ part.ipn ?? 'part.ipn.not_defined'|trans }}</td>
|
|
</tr>
|
|
|
|
<tr> {# Favorite status #}
|
|
<td>{% trans %}part.isFavorite{% endtrans %}</td>
|
|
<td>{{ helper.boolean_badge(part.favorite) }}</td>
|
|
</tr>
|
|
|
|
<tr> {# Build status #}
|
|
<td>{% trans %}part.is_build_part{% endtrans %}</td>
|
|
<td>{{ helper.boolean_badge(part.projectBuildPart) }}
|
|
{% if part.projectBuildPart %}(<a href="{{ entity_url(part.builtProject, "edit") }}">{{ part.builtProject.name }}</a>){% endif %}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>{% trans %}part.minOrderAmount{% endtrans %}</td>
|
|
<td>{% if pricedetail_helper.minOrderAmount(part) %}
|
|
{{ pricedetail_helper.minOrderAmount(part) | format_amount(part.partUnit) }}
|
|
{% else %}
|
|
{% trans %}Unknown{% endtrans %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |