Data_template in conditions in automation

Is it possible to use a data template in a condition when working with automations?

I tried various versions in the like of below without success

      - condition: time
        data_template:
          after: '{{ states('input_datetime.vardagsrum_morgon_time_off') }}'

I know I can do it with a template as condition but I think the readability and ease of maintinance is better if I can use time as condition

nope, only in a template condition.

should be easy though:

{{ as_timestamp(now()) >= state_attr('input_datetime.vardagsrum_morgon_time_off','timestamp') }}

ok, that was what I was afraid of.

Already using a template condition but think its hard to get a quick understanding when going back for maintenance when you have loads of automations with “condition: template”