I have an Order model which has one Cart model. In orders#edit form I want to have a link to the carts#show page of the belonging cart.
The documentation mentions several UI elements which can be rendered, but I don't see things which can render links.
My current setup is:
class OrdersController < ApplicationController
active_scaffold :order do |conf|
conf.columns = [:name, :cart]