root/galaxy-central/templates/webapps/community/common/common.mako
リビジョン 2, 0.5 KB (コミッタ: hatakeyama, 14 年 前) |
---|
行番号 | |
---|---|
1 | <%def name="render_star_rating( name, rating, disabled=False )"> |
2 | <% |
3 | if disabled: |
4 | disabled_str = ' disabled="disabled"' |
5 | else: |
6 | disabled_str = '' |
7 | html = '' |
8 | for index in range( 1, 6 ): |
9 | html += '<input name="%s" type="radio" class="star" value="%s" %s' % ( str( name ), str( index ), disabled_str ) |
10 | if rating > ( index - 0.5 ) and rating < ( index + 0.5 ): |
11 | html += ' checked="checked"' |
12 | html += '/>' |
13 | %> |
14 | ${html} |
15 | </%def> |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。