|
21 | 21 | <li>現在は活動停止中 (In-active) の道場も表示されています</li>
|
22 | 22 | <li>道場名をクリックすると個別の統計データが確認できます</li>
|
23 | 23 | <li>下記表は <code><%= link_to dojos_path(format: :json), dojos_path(format: :json) %></code> で JSON に変換できます</li>
|
| 24 | + <li>CSV形式でもダウンロード可能です <code><%= link_to dojos_path(format: :csv), dojos_path(format: :csv) %></code></li> |
24 | 25 | </ul>
|
25 | 26 | </div>
|
26 | 27 | </p>
|
| 28 | + |
| 29 | + <!-- 年次データフィルタリング --> |
| 30 | + <div style="margin: 30px auto; padding: 20px; background: #f8f9fa; border-radius: 8px; max-width: 600px;"> |
| 31 | + <h3>📊 年次データのフィルタリング</h3> |
| 32 | + |
| 33 | + <% if @selected_year %> |
| 34 | + <div style="padding: 10px; background: #d1ecf1; border: 1px solid #bee5eb; border-radius: 4px; margin-bottom: 15px;"> |
| 35 | + <strong><%= @selected_year %>年末時点</strong>のアクティブな道場を表示中 |
| 36 | + <%= link_to '全道場を表示', dojos_path, style: 'margin-left: 10px;' %> |
| 37 | + </div> |
| 38 | + <% end %> |
| 39 | + |
| 40 | + <%= form_with(url: dojos_path, method: :get, local: true, style: 'margin-top: 15px;') do |f| %> |
| 41 | + <div style="display: flex; align-items: center; justify-content: center; gap: 10px;"> |
| 42 | + <%= label_tag :year, '年を選択:', style: 'font-weight: bold;' %> |
| 43 | + <%= select_tag :year, |
| 44 | + options_for_select( |
| 45 | + (2012..Date.current.year).to_a.reverse.map { |y| [y.to_s + '年', y] }, |
| 46 | + params[:year] |
| 47 | + ), |
| 48 | + include_blank: '全道場', |
| 49 | + style: 'padding: 5px; border: 1px solid #ced4da; border-radius: 4px;' %> |
| 50 | + |
| 51 | + <%= button_tag type: 'submit', style: 'padding: 5px 15px; background: #17a2b8; color: white; border: none; border-radius: 4px; cursor: pointer;' do %> |
| 52 | + 表示 |
| 53 | + <% end %> |
| 54 | + |
| 55 | + <%= link_to 'CSV', dojos_path(format: :csv, year: params[:year]), |
| 56 | + style: 'padding: 5px 15px; background: #28a745; color: white; text-decoration: none; border-radius: 4px;' %> |
| 57 | + |
| 58 | + <%= link_to 'JSON', dojos_path(format: :json, year: params[:year]), |
| 59 | + style: 'padding: 5px 15px; background: #6c757d; color: white; text-decoration: none; border-radius: 4px;' %> |
| 60 | + </div> |
| 61 | + <% end %> |
| 62 | + |
| 63 | + <p style="font-size: smaller; color: #6c757d; margin-top: 15px;"> |
| 64 | + ※ 年を選択すると、その年末時点でアクティブだった道場のデータを表示・ダウンロードできます。 |
| 65 | + </p> |
| 66 | + </div> |
27 | 67 |
|
28 | 68 | <style type="text/css">
|
29 | 69 | /* URL 用のセルにクラスを付けておく想定 */
|
|
0 commit comments