Icon buttons on the right of h2

I have the following

<ion-item *ngFor="let event of range.Events">
   <h2>{{event.Name}}</h2>                       buttons go here
    <p>{{event.FullEventDateString}}</p> -- should span all the way (under the buttons)
</ion-item>

I tried using

…buttons but that pulls it to the right of everything instead of just the h2

anyone have any idea?