<%= form_for([@community, @topic]) do |f| %> <%= render 'shared/errors', resource: @topic %>
<%= f.label :title, t("community.topic.form.topic_title") %> <%= f.text_field :title, label: false %> <%= f.label :description, t("community.topic.form.topic_text") %> <%= f.text_area :description, label: false, rows: "5" %> <%= f.submit(class: "button", value: t("community.topic.form.#{action_name}.submit_button")) %>
<% end %>