mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-27 16:14:46 +00:00
- Revamp the super admin design - Introduce a new settings page for support and billing settings - Move the access tokens into users, agent bots and platform app show pages Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
24 lines
452 B
Plaintext
24 lines
452 B
Plaintext
<% content_for(:title) do %>
|
|
Instance Status
|
|
<% end %>
|
|
<header class="main-content__header" role="banner">
|
|
<h1 class="main-content__page-title" id="page-title">
|
|
<%= content_for(:title) %>
|
|
</h1>
|
|
</header>
|
|
<section class="main-content__body">
|
|
<table>
|
|
<tr>
|
|
<th>Metric</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
<% @metrics.each do |key,value| %>
|
|
<tr>
|
|
<td> <%= key %> </td>
|
|
<td> <%= value %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
</section>
|