html_style.tpl 694 B

1234567891011121314151617181920212223242526
  1. {%- block before_style -%}{%- endblock before_style -%}
  2. {% block style %}
  3. <style type="text/css">
  4. {% block table_styles %}
  5. {% for s in table_styles %}
  6. #T_{{uuid}} {{s.selector}} {
  7. {% for p,val in s.props %}
  8. {{p}}: {{val}};
  9. {% endfor %}
  10. }
  11. {% endfor %}
  12. {% endblock table_styles %}
  13. {% block before_cellstyle %}{% endblock before_cellstyle %}
  14. {% block cellstyle %}
  15. {% for cs in [cellstyle, cellstyle_index, cellstyle_columns] %}
  16. {% for s in cs %}
  17. {% for selector in s.selectors %}{% if not loop.first %}, {% endif %}#T_{{uuid}}_{{selector}}{% endfor %} {
  18. {% for p,val in s.props %}
  19. {{p}}: {{val}};
  20. {% endfor %}
  21. }
  22. {% endfor %}
  23. {% endfor %}
  24. {% endblock cellstyle %}
  25. </style>
  26. {% endblock style %}