summaryrefslogtreecommitdiff
path: root/web/views/test/wiki_import.erb
blob: 126d18639b322dadd46e204264e035adf097ac36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div class="pre">
    <h1 class="section">Wiki Import</h1>
</div>
<div class="box">
    <h2>Invalid page titles</h2>
    <table class="list">
        <tr>
            <th>Reason</th><th>Page title</th>
        </tr>
<% @invalid_page_titles.each do |row| %>
        <tr>
            <td><%= h(row['reason']) %></td>
            <td><%= h(row['title'])  %></td>
        </tr>
<% end %>
    </table>

    <h2 style="margin-top: 20px">Invalid image titles</h2>
    <table class="list">
        <tr>
            <th>Page title</th><th>Image title</th>
        </tr>
<% @invalid_image_titles.each do |row| %>
        <tr>
            <td><%= wiki_link(h(row['page_title'])) %></td>
            <td><%= h(row['image_title'])  %></td>
        </tr>
<% end %>
    </table>
</div>