summaryrefslogtreecommitdiff
path: root/web/views/reports/josm_styles.erb
blob: 22e7a7ad414510468eaa6c9d0fcc57fa8a5b49d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="pre">
    <h1><%= h(t.reports.josm_styles.name) %></h1>
<!--
    Select style:
    <select>
    <% ['standard'].each do |style| %>
        <option id="<%= style %>" name="<%= style %>"><%= style %></option>
    <% end %>
    </select>-->
</div>
<div class="box resize">
    <table id="grid-rules">
    </table>
</div>
<% javascript do
    JS.raw(<<"JAVASCRIPT")
function page_init2() {
    create_flexigrid_with_option('standard');
}
JAVASCRIPT
end
%>