Sha256: 4e52c88aa33516d5551343c4040a2f83273dea17694e90d60877faa9d4879ae4
Contents?: true
Size: 855 Bytes
Versions: 28
Compression:
Stored size: 855 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Mautic Connections</h1> <table class="table table-stripped"> <thead> <tr> <th>Url</th> <th>Client</th> <th>Secret</th> <th colspan="2"></th> </tr> </thead> <tbody> <% @mautic_connections.each do |mautic_connection| %> <tr> <td><%= link_to(mautic_connection.url, mautic.connection_path(mautic_connection)) %></td> <td><%= mautic_connection.client_id %></td> <td><%= mautic_connection.secret %></td> <td><%= link_to 'Edit', mautic.edit_connection_path(mautic_connection) %></td> <td><%= link_to 'Destroy', mautic.connection_path(mautic_connection), method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Mautic Connection', mautic.new_connection_path %>
Version data entries
28 entries across 28 versions & 1 rubygems