Skip to content

Commit

Permalink
Change the wording of incoming placements
Browse files Browse the repository at this point in the history
  • Loading branch information
exflikt committed Oct 6, 2024
1 parent e13fa81 commit 30ea5ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/templates/canceled-placements.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ul>
</nav>
<form id="placements-filter" action="/placements" method="GET" class="mb-0 hidden md:flex md:flex-row gap-3">
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-300">受け取り待ち</a>
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-300">未受取</a>
<a href="/canceled-placements" class="cursor-pointer px-2 rounded bg-gray-900 text-white">取消</a>
<a href="/completed-placements" class="cursor-pointer px-2 rounded bg-gray-300">完了</a>
</form>
Expand Down Expand Up @@ -55,7 +55,7 @@ <h2 class="text-2xl">#{{ placement.placement_id }}</h2>
hx-confirm="一度取り消した注文 #{{ placement.placement_id }} を受け取り待ちに戻しますか?"
hx-swap="delete"
class="mx-8 py-1 border-2 border-gray-600 rounded-lg"
>受け取り待ちに戻す</button>
>未受取に戻す</button>
</div>
{% endfor %}
</main>
Expand Down
4 changes: 2 additions & 2 deletions app/templates/completed-placements.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ul>
</nav>
<form id="placements-filter" action="/placements" method="GET" class="mb-0 hidden md:flex md:flex-row gap-3">
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-300">受け取り待ち</a>
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-300">未受取</a>
<a href="/canceled-placements" class="cursor-pointer px-2 rounded bg-gray-300">取消</a>
<a href="/completed-placements" class="cursor-pointer px-2 rounded bg-gray-900 text-white">完了</a>
</form>
Expand Down Expand Up @@ -55,7 +55,7 @@ <h2 class="text-2xl">#{{ placement.placement_id }}</h2>
hx-confirm="一度取り消した注文 #{{ placement.placement_id }} を受け取り待ちに戻しますか?"
hx-swap="delete"
class="mx-8 py-1 border-2 border-gray-600 rounded-lg"
>受け取り待ちに戻す</button>
>未受取に戻す</button>
</div>
{% endfor %}
</main>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/incoming-placements.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ul>
</nav>
<form id="placements-filter" action="/placements" method="GET" class="mb-0 hidden md:flex md:flex-row gap-3">
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-900 text-white">受け取り待ち</a>
<a href="/incoming-placements" class="cursor-pointer px-2 rounded bg-gray-900 text-white">未受取</a>
<a href="/canceled-placements" class="cursor-pointer px-2 rounded bg-gray-300">取消</a>
<a href="/completed-placements" class="cursor-pointer px-2 rounded bg-gray-300">完了</a>
</form>
Expand Down

0 comments on commit 30ea5ba

Please sign in to comment.