refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
9
resources/views/dashboard/events/_activity.blade.php
Normal file
9
resources/views/dashboard/events/_activity.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/activity_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}" id="activity_{{ $event['nature_of_operation'] }}_{{ $event['object_id'] }}">
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type'], ['name' => $event['contact_complete_name']]) }}
|
||||
</a>
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_call.blade.php
Normal file
9
resources/views/dashboard/events/_call.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/call_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}" id="call_{{ $event['nature_of_operation'] }}_{{ $event['object_id'] }}">
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type'], ['name' => $event['contact_complete_name']]) }}
|
||||
</a>
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_contact.blade.php
Normal file
9
resources/views/dashboard/events/_contact.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/contact_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}">{{ $event['contact_complete_name'] }}</a>:
|
||||
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type']) }}
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_debt.blade.php
Normal file
9
resources/views/dashboard/events/_debt.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/debt_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}">{{ $event['contact_complete_name'] }}</a>:
|
||||
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type']) }}
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_gift.blade.php
Normal file
9
resources/views/dashboard/events/_gift.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/gift_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}">{{ $event['contact_complete_name'] }}</a>:
|
||||
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type']) }}
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_note.blade.php
Normal file
9
resources/views/dashboard/events/_note.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/note_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}" id="note_{{ $event['nature_of_operation'] }}_{{ $event['object_id'] }}">
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type'], ['name' => $event['contact_complete_name']]) }}
|
||||
</a>
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_reminder.blade.php
Normal file
9
resources/views/dashboard/events/_reminder.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/reminder.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}">{{ $event['contact_complete_name'] }}</a>:
|
||||
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type']) }}
|
||||
</div>
|
||||
9
resources/views/dashboard/events/_task.blade.php
Normal file
9
resources/views/dashboard/events/_task.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="event-icon">
|
||||
<img src="img/dashboard/task_{{ $event['nature_of_operation'] }}.png">
|
||||
</div>
|
||||
|
||||
<div class="event-description">
|
||||
<a href="{{ route('people.show', $event['contact_id']) }}">{{ $event['contact_complete_name'] }}</a>:
|
||||
|
||||
{{ trans('dashboard.event_'.$event['nature_of_operation'].'_'.$event['object_type']) }}
|
||||
</div>
|
||||
Reference in New Issue
Block a user