mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 11:04:14 +00:00
25 lines
887 B
Plaintext
25 lines
887 B
Plaintext
<%= content_for :page_title, t(".title") %>
|
|
<%= settings_section title: t(".general") do %>
|
|
<div class="space-y-6">
|
|
<%= render "settings/hostings/openai_settings" %>
|
|
<%= render "settings/hostings/brand_fetch_settings" %>
|
|
</div>
|
|
<% end %>
|
|
<%= settings_section title: t(".financial_data_providers") do %>
|
|
<div class="space-y-6">
|
|
<%= render "settings/hostings/provider_selection" %>
|
|
<% if @show_yahoo_finance_settings %>
|
|
<%= render "settings/hostings/yahoo_finance_settings" %>
|
|
<% end %>
|
|
<% if @show_twelve_data_settings %>
|
|
<%= render "settings/hostings/twelve_data_settings" %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<%= settings_section title: t(".invites") do %>
|
|
<%= render "settings/hostings/invite_code_settings" %>
|
|
<% end %>
|
|
<%= settings_section title: t(".danger_zone") do %>
|
|
<%= render "settings/hostings/danger_zone_settings" %>
|
|
<% end %>
|