Skip to content

Commit

Permalink
Merge pull request #16 from whatwedo/fix/15-araise-namepsaces-moved
Browse files Browse the repository at this point in the history
fix: change namespaces from whatwedo/ to araise/
  • Loading branch information
tuxes3 authored May 8, 2024
2 parents ed97788 + b83fdb9 commit c0b9239
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 deletions src/Resources/views/index.html.twig
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{% extends '@whatwedoCron/base.html.twig' %}

{% block main %}
<div class="whatwedo_table:wrapper bg-white" {{ stimulus_controller('whatwedo/table-bundle/filter') }}>
<div class="whatwedo_table:wrapper bg-white" {{ stimulus_controller('araise/table-bundle/filter') }}>
<header class="whatwedo_table:header border-b border-neutral-200 px-4 py-4 sm:flex sm:items-center sm:justify-between">
<div class="whatwedo_table:header__title flex-1 min-w-0 text-lg font-medium leading-6 text-neutral-900 sm:truncate">
<h1>
{{ 'whatwedo_cronjob.cronJobs'|trans }}
</h1>
<h1>
{{ 'whatwedo_cronjob.cronJobs'|trans }}
</h1>
</div>
</header>

<div>
<turbo-frame id="whatwedo_table_wwd_cron_jobs" data-turbo="true" target="_top">
<div class="whatwedo_table:table__wrapper align-middle inline-block min-w-full border-b border-neutral-200">
<table
class="min-w-full" {{ stimulus_target('whatwedo/table-bundle/table', 'table') }}>
class="min-w-full" {{ stimulus_target('araise/table-bundle/table', 'table') }}>

<thead class="whatwedo_table:table__head">
<tr class="border-b border-neutral-200 bg-neutral-50 text-xs font-medium text-neutral-500 text-left uppercase tracking-wider">
Expand All @@ -26,7 +26,7 @@
</tr>
</thead>
<tbody
class="whatwedo_table:table__body bg-white text-sm text-neutral-500 font-medium divide-y divide-neutral-100">
class="whatwedo_table:table__body bg-white text-sm text-neutral-500 font-medium divide-y divide-neutral-100">
{% if list is empty %}
<tr class="whatwedo_table:table__row hover:bg-neutral-50 transition duration-500 color">
<td class="px-3 py-2 font-normal">
Expand All @@ -53,23 +53,23 @@
<td class="px-3 py-2">{% if item.lastExecution %}{{ item.lastExecution.finishedAt|date('d.m.Y H:i') }}{% endif %}</td>
<td class="whatwedo_table:table__actions pr-6 align-top">
<div
class="relative flex justify-end items-center" {{ stimulus_controller('whatwedo/core-bundle/dropdown') }}>
class="relative flex justify-end items-center" {{ stimulus_controller('araise/core-bundle/dropdown') }}>
<button
class="whatwedo_table-actions"
{{ stimulus_action('whatwedo/core-bundle/dropdown', 'toggle') | stimulus_action('whatwedo/core-bundle/dropdown', 'click@window', 'hide') }}
type="button"
class="whatwedo_table-actions"
{{ stimulus_action('araise/core-bundle/dropdown', 'toggle') | stimulus_action('araise/core-bundle/dropdown', 'click@window', 'hide') }}
type="button"
>
<span class="sr-only">{{ 'whatwedo_cronjob.options'|trans }}</span>
{{ bootstrap_icon('three-dots-vertical', { class: 'h-4 w-4' }) }}
</button>
<div
{{ stimulus_target('whatwedo/core-bundle/dropdown', 'menu') }}
class="z-50 hidden transition duration-300 origin-top-right mx-3 origin-top-right absolute right-7 top-0 w-48 -mt-1 rounded-md shadow-lg z-10 bg-white ring-1 ring-black ring-opacity-5 divide-y divide-neutral-200 focus:outline-none"
data-transition-enter-from="opacity-0 scale-95"
data-transition-enter-to="opacity-100 scale-100"
data-transition-leave-from="opacity-100 scale-100"
data-transition-leave-to="opacity-0 scale-95"
tabindex="-1"
{{ stimulus_target('araise/core-bundle/dropdown', 'menu') }}
class="z-50 hidden transition duration-300 origin-top-right mx-3 origin-top-right absolute right-7 top-0 w-48 -mt-1 rounded-md shadow-lg z-10 bg-white ring-1 ring-black ring-opacity-5 divide-y divide-neutral-200 focus:outline-none"
data-transition-enter-from="opacity-0 scale-95"
data-transition-enter-to="opacity-100 scale-100"
data-transition-leave-from="opacity-100 scale-100"
data-transition-leave-to="opacity-0 scale-95"
tabindex="-1"
>
<div class="py-1" role="none">

Expand Down
8 changes: 4 additions & 4 deletions src/Resources/views/show.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<div class="border-t border-neutral-200 bg-white sm:rounded-b-lg">
<div class="whatwedo_table:table__wrapper align-middle inline-block min-w-full border-b border-neutral-200">
<table
class="min-w-full" {{ stimulus_target('whatwedo/table-bundle/table', 'table') }}>
class="min-w-full" {{ stimulus_target('araise/table-bundle/table', 'table') }}>

<thead class="whatwedo_table:table__head">
<tr class="border-b border-neutral-200 bg-neutral-50 text-xs font-medium text-neutral-500 text-left uppercase tracking-wider">
Expand Down Expand Up @@ -144,17 +144,17 @@
<td class="px-3 py-2">{{ item.finishedAt|date('d.m.Y H:i') }}</td>
<td class="whatwedo_table:table__actions pr-6 align-top">
<div
class="relative flex justify-end items-center" {{ stimulus_controller('whatwedo/core-bundle/dropdown') }}>
class="relative flex justify-end items-center" {{ stimulus_controller('araise/core-bundle/dropdown') }}>
<button
class="whatwedo_table-actions"
{{ stimulus_action('whatwedo/core-bundle/dropdown', 'toggle') | stimulus_action('whatwedo/core-bundle/dropdown', 'click@window', 'hide') }}
{{ stimulus_action('araise/core-bundle/dropdown', 'toggle') | stimulus_action('araise/core-bundle/dropdown', 'click@window', 'hide') }}
type="button"
>
<span class="sr-only">{{ 'whatwedo_cronjob.options'|trans }}</span>
{{ bootstrap_icon('three-dots-vertical', { class: 'h-4 w-4' }) }}
</button>
<div
{{ stimulus_target('whatwedo/core-bundle/dropdown', 'menu') }}
{{ stimulus_target('araise/core-bundle/dropdown', 'menu') }}
class="z-50 hidden transition duration-300 origin-top-right mx-3 origin-top-right absolute right-7 top-0 w-48 -mt-1 rounded-md shadow-lg z-10 bg-white ring-1 ring-black ring-opacity-5 divide-y divide-neutral-200 focus:outline-none"
data-transition-enter-from="opacity-0 scale-95"
data-transition-enter-to="opacity-100 scale-100"
Expand Down

0 comments on commit c0b9239

Please sign in to comment.