Code for page generators, is it possible to clean/refactor?

Hello!
I have been using Go Admin for a month or two. I am using the Generators to create some CRUD pages, and when I work on the READ page for one of my database tables, I end up having to write code like this:

// For the Show page
	info := appsTable.GetInfo().
		SetTable("apps").
		SetTitle(lang.Translate("apps")).
		SetDescription(lang.Translate("apps")).
		Where("id_id", "=", ID)

	info.AddField(lang.Translate("id"), "id", db.UUID).
		FieldSortable()
	info.AddField(lang.Translate("code"), "code", db.UUID).
		FieldSortable()
	info.AddColumn(lang.Translate("client_name"), func(value types.FieldModel) interface{} {
		if value.Row["id"] == nil {
			return ""
		}

		return apps.FindColByID("label", value.Row["id"].(string))

	}).
		FieldSortable()
	info.AddField(lang.Translate("top_id"), "top_id", db.UUID).
		FieldSortable()
	info.AddColumn(lang.Translate("exchange"), func(value types.FieldModel) interface{} {
		if value.Row["id"] == nil {
			return ""
		}

		return appDomains.FindColByID("value", value.Row["id"].(string))
	}).
		FieldSortable()
	info.AddField(lang.Translate("label"), "label", db.Varchar)
	info.AddField(lang.Translate("is_x"), "is_x", db.Bool).
		FieldSortable()
	info.AddField(lang.Translate("is_y"), "is_y", db.Bool).
		FieldSortable()
	info.AddField(lang.Translate("decolorization_status"), "decolorization_status", db.Varchar).
		FieldSortable()
	info.AddField(lang.Translate("decolorized_at"), "decolorized_at", db.Timestamptz).
		FieldSortable()
	info.AddField(lang.Translate("created_at"), "created_at", db.Timestamptz).
		FieldSortable()
	info.AddField(lang.Translate("updated_at"), "updated_at", db.Timestamptz).
		FieldSortable()

Now, to me that seems quite difficult to maintain, because there is a lot of repetition of the same methods AddField and FieldSortable, and it is hard to make it look beautiful (or it seems to me).

Any suggestions? Any ways that you can see how this could be improved, using the internal tools available in Go admin?

Thanks a lot! :v: