public Node[] bookings( QuikitContext context )
{
ArrayList<Node> nodes = new ArrayList<Node>();
Document dom = context.dom();
UnitOfWork uow = uowf.currentUnitOfWork();
RentalShop shop = uow.get( RentalShop.class, "SHOP" );
for( Booking booking : shop.findAllBookings() )
{
String plate = booking.car().get().licensePlate().get();
// TODO: Next version;
// Node node = create( dom, "<li><a href='{1}'>{2}</a>{3}</li>", createLink( booking ), plate, createPeriod( booking.period().get() ) );