1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/telegram_bots/index.html.erb

29 lines
702 B
Text
Raw Normal View History

<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">
<%= TelegramBot.human_attribute_name :id %>
</th>
<th scope="col">
<%= TelegramBot.human_attribute_name :secret %>
</th>
<th scope="col">
<%= TelegramBot.human_attribute_name :api_token %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @telegram_bots.each do |telegram_bot| %>
<tr>
<td scope="row"><%= telegram_bot.id %></td>
<td><%= telegram_bot.secret %></td>
<td><%= telegram_bot.api_token %></td>
</tr>
<% end %>
</tbody>
</table>
</div>