tabletop-companion/app/views/characters/_character.html.erb

8 lines
248 B
Plaintext
Raw Normal View History

2024-06-05 17:49:34 +00:00
<div id=<%= dom_id(character) %> class="character">
2024-07-02 17:07:06 +00:00
<h5><%= link_to character.name, character, data: { turbo_frame: "_top" } %></h5>
2024-06-05 17:49:34 +00:00
<ul>
<li><%= character.game_system.name %></li>
<li><%= character.user.username %></li>
</ul>
2024-06-05 17:46:27 +00:00
</div>