people.yaml 770 B

123456789101112131415161718192021222324252627282930
  1. entities:
  2. - file: entities/person.yaml
  3. name: person
  4. dashboards:
  5. - title: Second Dashboard
  6. contents:
  7. - type: action
  8. inlineAction:
  9. title: Third Action
  10. shell: echo "Second Dashboard, Third Action!"
  11. - type: action
  12. inlineAction:
  13. title: Fourth Action
  14. shell: echo "Second Dashboard, Fourth Action!"
  15. - title: "Person: {{ person.name }}"
  16. type: fieldset
  17. entity: person
  18. contents:
  19. - type: display
  20. title: " {{ person.name }} is a person"
  21. cssStyle:
  22. background-color: red;
  23. - title: "Greet {{ person.name }}"
  24. inlineAction:
  25. shell: echo "Hello, {{ person.name }}!"
  26. icon: ping