Can I add additional sensor info to secondary info line (Mushroom Template Card) (right justify)?

I’m looking for a way to add additional information into my Mushroom template card.

I have a mushroom entity card that shows the state of my Horizontal blinds. Currently, it shows the State (Open/Closed) and the tilt level in the secondary info field. I’m using some jinja templating to display that secondary information, which is left justified under the Primary info. What I’d like to do, is add a battery icon and the battery level right justified on the same line.

image

type: custom:mushroom-template-card
primary: Fireplace Left Blind
secondary: >-
  {% if state_attr('cover.family_room_blind_left_horizontal_slats_angle',
  'current_tilt_position') == 100  %}
    Closed (down inside)
  {% elif state_attr('cover.family_room_blind_left_horizontal_slats_angle',
  'current_tilt_position') == 0  %}
    Closed (up inside)      
  {% else %}
    Open - {{ state_attr('cover.family_room_blind_left_horizontal_slats_angle','current_tilt_position') -1 }}%
  {% endif %}

I want to be able to add “{{ states’sensor.family_room_blind_left_battery_level’) }} %” to the right side, along with a battery icon to keep the card as compact and minimalistic as possible, but still give me all the information I need.

There is other jinja code that sets the icon and icon color, but this secondary information section is what I’m mainly concerned with.

Is this possible?