diff options
author | Steven Barth <steven@midlink.org> | 2008-05-14 09:11:19 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-14 09:11:19 +0000 |
commit | 57eed999a292247bfb1e163c604f2cf876687baa (patch) | |
tree | 4e29cc0395d3c3f44dedb619c9ea74435ab1e851 /core/src | |
parent | 178da94019721cd9386f415a8f002ae714057e88 (diff) |
* Completed last commit
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/view/cbi/valuefooter.htm | 7 | ||||
-rw-r--r-- | core/src/view/cbi/valueheader.htm | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/core/src/view/cbi/valuefooter.htm b/core/src/view/cbi/valuefooter.htm new file mode 100644 index 000000000..99de567e0 --- /dev/null +++ b/core/src/view/cbi/valuefooter.htm @@ -0,0 +1,7 @@ +<% +if self.tiny then + include("cbi/tiny_valuefooter") +else + include("cbi/full_valuefooter") +end +%>
\ No newline at end of file diff --git a/core/src/view/cbi/valueheader.htm b/core/src/view/cbi/valueheader.htm new file mode 100644 index 000000000..3b7dd5b82 --- /dev/null +++ b/core/src/view/cbi/valueheader.htm @@ -0,0 +1,7 @@ +<% +if self.tiny then + include("cbi/tiny_valueheader") +else + include("cbi/full_valueheader") +end +%>
\ No newline at end of file |