Sha256: 421ec37ef915040ad499b88e40d4f29888daf79db04dfc4635d46719094259c5

Contents?: true

Size: 804 Bytes

Versions: 2

Compression:

Stored size: 804 Bytes

Contents

h1 Listing database_configs

table
  thead
    tr
      th Adapter
      th Encoding
      th Pool
      th Username
      th Password
      th Host
      th Database
      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
        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.13 app/views/easy_reports/database_configs/index.html.slim
easy_reports-0.0.11 app/views/easy_reports/database_configs/index.html.slim