2 Secondary Values

Hi Folks,

I have a sensor that give me the heating status, eg Idle or Heating
I am displaying it using this code and it works with no issues

         - type: custom:mushroom-template-card
            card_mod:
              style: |
                ha-card {
                  background: none ;
                  border: none;
                }
            entity: sensor.downstairs_hive_hvac
            primary: Upstairs heating
            secondary: '{{ states(''sensor.downstairs_hive_hvac'')  }}'

Untitled

Is there a way to also display the temperature along side the secondary value, so essentially have Heating and the current temperature on one line?

I was guessing something along the lines of

secondary: '{{ states(''sensor.downstairs_hive_hvac''), states(''sensor.downstairs_current_temp'')  }}'

TIA Ivan