Sha256: 9e056f296e35b9876254633a16adbe180468c3dc4778b90d1e76b6ce35b51566

Contents?: true

Size: 814 Bytes

Versions: 2

Compression:

Stored size: 814 Bytes

Contents

h1 Listing database_configs

table
  thead
    tr
      th Adapter
      th Encoding
      th Pool
      th Username
      th Password
      th Host
      th Database name
      th
      th
      th

  tbody
    - @database_configs.each do |database_config|
      tr
        td = database_config.adapter
        td = database_config.encoding
        td = database_config.pool
        td = database_config.username
        td = database_config.password
        td = database_config.host
        td = database_config.database_name
        td = link_to 'Show', database_config
        td = link_to 'Edit', edit_database_config_path(database_config)
        td = link_to 'Destroy', database_config, data: {:confirm => 'Are you sure?'}, :method => :delete

br

= link_to 'New Database config', new_database_config_path

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
easy_reports-0.0.15 app/views/easy_reports/database_configs/index.html.slim
easy_reports-0.0.14 app/views/easy_reports/database_configs/index.html.slim