# File lib/Borges/Component/ApplicationList.rb, line 60
  def render_row_for_application_on(app, r)
    return unless app.kind_of? Borges::Application

    r.table_row_with do
        r.url_anchor(app.base_path, app.name)
    end

    r.table_row_with do
      r.anchor('configure') do configure(app) end
      r.space
      r.anchor('remove') do remove(app) end
    end
  end