Files
bit/app/views/links/_show.html.erb
T
Juan Rodriguez 9c7146820c feat: Sessions controller
Sessions helper methods, login and signup modals, load partial views with stimulus

Situmuls usersController, Create and Destroy user sessions
2021-06-14 11:46:25 -05:00

13 lines
466 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 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>