Ignore:
Timestamp:
Dec 27, 2009, 12:29:13 PM (14 years ago)
Author:
broder
Message:

The <input /> tag is always empty, so having a separate closing
</input> tag is meaningless.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-web/code/templates/functions.mako

    r2791 r2792  
    2828% for vmtype in (('linux-hvm', 'HVM'), ('linux', 'ParaVM'), ):
    2929<label>
    30    <input ${'checked="checked"' if default == vmtype[0] else '' | n} type="radio" name="vmtype" id="vmtype-${vmtype[0]}" value="${vmtype[0]}">${vmtype[1]}</input>
     30   <input ${'checked="checked"' if default == vmtype[0] else '' | n} type="radio" name="vmtype" id="vmtype-${vmtype[0]}" value="${vmtype[0]}" />${vmtype[1]}
    3131</label>
    3232% endfor
Note: See TracChangeset for help on using the changeset viewer.