Import blueprint form field names

I want to re-use a blueprint for multiple fields, but the docs only give an example for a named field.

import@: for blueprints is described in the docs with this form definition:

form:
  fields:
    gallery.images:
      type: list
      label: Images
      fields:
        .src:
          type: text
          label: Image

and use like so

form:
  fields:
    images:
        type: section
        title: Images
        underline: true
        import@:
          type: partials/gallery
          context: blueprints://

this will write a list to gallery.images in the markdown. But what if I want to re-use partials/gallery for another gallery? e.g. gallery2.images

I don’t think this is currently supported. It’s getting a bit fiddly when you want to reuse things at that micro-scale.

I’m trying to reproduce my template, which is built from reusable partials, in blueprint. So far I have had to be very redundant in the blueprint.