##// END OF EJS Templates
add any-cell block
Matthias BUSSONNIER -
Show More
@@ -2,6 +2,7
2 {%- endblock header -%}
2 {%- endblock header -%}
3 {%- block body -%}
3 {%- block body -%}
4 {%- for cell in cells -%}
4 {%- for cell in cells -%}
5 {%- block any_cell scoped -%}
5 {%- if cell.type in ['code'] -%}
6 {%- if cell.type in ['code'] -%}
6 {%- block codecell scoped-%}
7 {%- block codecell scoped-%}
7 {%- endblock codecell-%}
8 {%- endblock codecell-%}
@@ -18,6 +19,7
18 {%- block unknowncell scoped-%}
19 {%- block unknowncell scoped-%}
19 {%- endblock unknowncell -%}
20 {%- endblock unknowncell -%}
20 {%- endif -%}
21 {%- endif -%}
22 {%- endblock any_cell -%}
21 {%- endfor -%}
23 {%- endfor -%}
22 {%- endblock body -%}
24 {%- endblock body -%}
23
25
@@ -1,10 +1,9
1 {%- extends 'python.tpl' -%}
1 {%- extends 'python.tpl' -%}
2
2
3 {% block codecell %}
3 {% block any_cell %}
4 ==============================
4 ==============================
5 =======start codecell=========
5 =======start {{cell.type}}=========
6 {{ super() }}
6 {{ super() }}
7 ======= end codecell =========
7 ======= end {{cell.type}} =========
8 ==============================
8 =============================={% endblock any_cell %}
9 {% endblock codecell %}
10
9
General Comments 0
You need to be logged in to leave comments. Login now