Files
bit/app/views/links/_show.html.erb
T
Juan Rodriguez 3e8bdee17a feat: Generate short url view
stimulus links controller, tailwindcss setup, links controller post route, tests updated

Generate short links view
2021-06-14 00:41:53 -05:00

13 lines
495 B
Plaintext

<div class="col-span-3 sm:col-span-2">
<label for="about" class="block text-sm font-medium text-gray-700">
Short url
</label>
<a data-links-target="shortUrl" href="<%= link.short %>" class="mt-1 text-sm text-gray-600" target="_blank" rel="noreferrer"><%= link.short %></a>
</div>
<div class="col-span-3 sm:col-span-2">
<label for="about" class="block text-sm font-medium text-gray-700">
Click counter
</label>
<p class="mt-2 text-sm text-gray-500"><%= link.click_counter %></p>
</div>