]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/html/input
removing old opac images and css
[Evergreen.git] / Open-ILS / src / templates / html / input
1
2 [%
3
4         "<input";
5                 IF type;                        " type='" _ type _ "'" ; END;
6                 IF name;                        " name='" _ name _ "'"; END; 
7                 IF value;               " value='" _ value _ "'"; END; 
8                 IF id;                  " id='" _ id _ "'"; END; 
9                 IF size;                        " size='" _ size _ "'"; END; 
10                 IF onkeypress;                  " onkeypress='" _ onkeypress _ "'"; END; 
11                 IF onkeydown;                   " onkeydown='" _ onkeydown _ "'"; END; 
12                 IF checked;             " checked='checked'"; END; 
13                 IF onclick;             " onclick='" _ onclick _ "'"; END; 
14                 IF ! content;   "/"; END;
15         ">";
16         IF content;
17                 content;
18                 "</input>";
19         END;
20
21 %]
22