mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Working on the time tracker
This commit is contained in:
parent
712f222e03
commit
c5fce2efcd
@ -87,6 +87,7 @@
|
||||
});
|
||||
</script>
|
||||
@elseif ($entityType == ENTITY_TASK)
|
||||
{!! Button::normal(trans('texts.time_tracker'))->asLinkTo('javascript:openTimeTracker()')->appendIcon(Icon::create('time')) !!}
|
||||
{!! DropdownButton::normal(trans('texts.projects'))
|
||||
->withAttributes(['class'=>'projectsDropdown'])
|
||||
->withContents([
|
||||
@ -100,7 +101,6 @@
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{!! Button::normal(trans('texts.time_tracker'))->asLinkTo('javascript:openTimeTracker()')->appendIcon(Icon::create('time')) !!}
|
||||
@endif
|
||||
|
||||
@if (Auth::user()->can('create', $entityType) && empty($vendorId))
|
||||
|
@ -196,7 +196,7 @@
|
||||
<div class="row no-gutter">
|
||||
|
||||
<!-- Task Form -->
|
||||
<div id="taskForm" class="col-sm-7 col-sm-push-5">
|
||||
<div id="taskForm" class="col-sm-8 col-sm-push-4 col-md-7 col-md-push-5">
|
||||
<div id="formDiv" class="panel panel-default x-affix" data-bind="visible: selectedTask" style="margin:20px; display:none;">
|
||||
<div class="panel-body">
|
||||
<form id="taskForm">
|
||||
@ -304,7 +304,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Task List -->
|
||||
<div id="taskList" class="list-group col-sm-5 col-sm-pull-7" style="display:none;overflow:auto;margin-bottom:0px;">
|
||||
<div id="taskList" class="list-group col-sm-4 col-sm-pull-8 col-md-5 col-md-pull-7" style="display:none;overflow:auto;margin-bottom:0px;">
|
||||
<div id="filterPanel" style="margin-bottom:0px;padding-top:20px;padding-bottom:0px;padding-left:10px;display:none;">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
|
Loading…
Reference in New Issue
Block a user