* open "create new project/activity" form in modal * re-use action translation for create action title * do not pre-select first customer in list - fixes #1828 * sort user preferences in sections for better visual grouping * show comment date only in hover of user avatar
98 lines
4.3 KiB
Twig
98 lines
4.3 KiB
Twig
{% extends 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "activity/actions.html.twig" as actions %}
|
|
|
|
{% block page_title %}{{ 'admin_activity.title'|trans }}{% endblock %}
|
|
{% block page_actions %}{{ actions.activity(activity, 'details') }}{% endblock %}
|
|
|
|
{% block main %}
|
|
{% set can_edit = is_granted('edit', activity) %}
|
|
{% set currency = null %}
|
|
{% if activity.project is not null %}
|
|
{% set currency = activity.project.customer.currency %}
|
|
{% endif %}
|
|
|
|
{% embed '@AdminLTE/Widgets/box-widget.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "customer/actions.html.twig" as customerActions %}
|
|
{% import "project/actions.html.twig" as projectActions %}
|
|
{% block box_attributes %}id="activity_details_box"{% endblock %}
|
|
{% block box_title %}
|
|
{{ widgets.label_activity(activity) }}
|
|
{% endblock %}
|
|
{% block box_tools %}
|
|
{% if can_edit %}
|
|
<a class="modal-ajax-form open-edit btn btn-default btn-sm" data-href="{{ path('admin_activity_edit', {'id': activity.id}) }}" data-toggle="tooltip" data-placement="top" title="{{ 'action.edit'|trans }}"><i class="{{ 'edit'|icon }}"></i></a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block box_body_class %}no-padding{% endblock %}
|
|
{% block box_body %}
|
|
{% if activity.comment is not empty %}
|
|
<div class="comment">
|
|
{{ activity.comment|comment2html(true) }}
|
|
</div>
|
|
{% endif %}
|
|
<table class="table table-hover dataTable">
|
|
{% if not activity.visible %}
|
|
<tr>
|
|
<th>{{ 'label.visible'|trans }}</th>
|
|
<td colspan="3">
|
|
{{ widgets.label_boolean(activity.visible) }}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% if not activity.global %}
|
|
<tr>
|
|
<th>{{ 'label.customer'|trans }}</th>
|
|
<td>
|
|
{{ widgets.label_customer(activity.project.customer) }}
|
|
</td>
|
|
<td class="w-min">
|
|
{{ widgets.badge_team_access(activity.project.customer.teams) }}
|
|
</td>
|
|
<td class="actions">
|
|
{{ customerActions.customer(activity.project.customer, 'custom') }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ 'label.project'|trans }}</th>
|
|
<td>
|
|
{{ widgets.label_project(activity.project) }}
|
|
</td>
|
|
<td class="w-min">
|
|
{{ widgets.badge_team_access(activity.project.teams) }}
|
|
</td>
|
|
<td class="actions">
|
|
{{ projectActions.project(activity.project, 'custom') }}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% for metaField in activity.visibleMetaFields %}
|
|
<tr>
|
|
<th>{{ metaField.label|trans }}</th>
|
|
<td colspan="3">{{ widgets.form_type_value(metaField.type, metaField.value, activity) }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|
|
{% endembed %}
|
|
|
|
{% if stats is not null %}
|
|
{{ include('activity/embed_budget.html.twig', {'activity': activity, 'stats': stats}) }}
|
|
{% endif %}
|
|
|
|
{% if can_edit %}
|
|
{{ include('embeds/rates-table.html.twig', {'id': 'activity_rates_box', 'entity': activity, 'create_url': path('admin_activity_rate_add', {'id': activity.id}), 'delete_route': 'delete_activity_rate', 'currency': currency}) }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ parent() }}
|
|
<script type="text/javascript">
|
|
document.addEventListener('kimai.initialized', function() {
|
|
KimaiReloadPageWidget.create('kimai.activityUpdate kimai.teamUpdate kimai.projectTeamUpdate kimai.projectUpdate kimai.rateUpdate');
|
|
});
|
|
</script>
|
|
{% endblock %}
|