Skip to content

Commit

Permalink
Show a pointer cursor when on exercise list
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesvandyne committed Jan 8, 2024
1 parent 78bdb56 commit cda84f2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -21,7 +21,7 @@ <h1 class="text-2xl mb-2">Exercise</h1>
<h1 class="text-xl">Activities</h1>
<ol>
{% for activity in activities %}
<li class="mt-2" hx-get="{% url "plugin_exercise_admin:activity_detail" activity.pk %}" hx-trigger="click" hx-target="body" hx-swap="beforeend">
<li class="mt-2 cursor-pointer" hx-get="{% url "plugin_exercise_admin:activity_detail" activity.pk %}" hx-trigger="click" hx-target="body" hx-swap="beforeend">
<div class="flex">
<div class="w-full md:w-96">
<h1>{{ activity.name }}</h1>
Expand Down

0 comments on commit cda84f2

Please sign in to comment.