There are some sections where we are not reusing it: * The budget investments search is completely different, so this component isn't appropriate there * Booth assignment and officers are slightly different, and I'm not entirely sure it's safe to refactor these cases
19 lines
516 B
Plaintext
19 lines
516 B
Plaintext
<h2 class="inline-block"><%= t("admin.questions.index.title") %></h2>
|
|
|
|
<%= link_to t("admin.questions.index.create"), new_admin_question_path,
|
|
class: "button float-right" %>
|
|
|
|
<%= render "search" %>
|
|
|
|
<div class="tabs-content" data-tabs-content="questions-tabs">
|
|
<%= render "filter_subnav" %>
|
|
|
|
<div class="tabs-panel is-active" id="tab-questions">
|
|
<%= render "questions" %>
|
|
</div>
|
|
|
|
<div class="tabs-panel" id="tab-successful-proposals">
|
|
<%= render "successful_proposals" %>
|
|
</div>
|
|
</div>
|