On Mon, Nov 9, 2009 at 04:28, Terence Monteiro <[email protected]> wrote: > I needed a TT filter to convert bytes into units of kb, Mb, Gb, etc. I > wrote a filter for this. Has anyone found such a module on CPAN or > anywhere?
http://search.cpan.org/dist/Template-Plugin-Number-Format/ Specifically, you want the format_bytes filter: [% USE Number.Format %] 1024 = [% SET x = 1024; x | format_bytes %] 2560 = [% SET x = 2560; x | format_bytes %] Yields: 1024 = 1K 2560 = 2.5K -- (darren) _______________________________________________ templates mailing list [email protected] http://mail.template-toolkit.org/mailman/listinfo/templates
