Sha256: 3994bc32691681439d2af0adc7f4df971a318cbbcee3a8763b49ea42293380d7

Contents?: true

Size: 1.93 KB

Versions: 30

Compression:

Stored size: 1.93 KB

Contents

<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.showing', :model => t('activerecord.models.question')) -%></h1>
<div id="content_list">
<p id="notice"><%= notice %></p>

<p>
  <strong><%= t('activerecord.models.user') -%>:</strong>
  <%= link_to @question.user.username, @question.user -%>
</p>

<p>
  <strong><%= t('activerecord.attributes.question.body') -%>:</strong>
  <%= raw auto_link(textilize(h(@question.body))) -%>
</p>

<p>
  <strong><%= t('activerecord.attributes.question.shared') -%>:</strong>
  <%= localized_boolean(@question.shared) -%>
  <strong><%= t('activerecord.attributes.question.solved') -%>:</strong>
  <%= localized_boolean(@question.solved) -%>
</p>

<p>
  <strong><%= t('page.created_at') -%>:</strong>
  <%= l(@question.created_at) -%>
  <strong><%= t('page.updated_at') -%>:</strong>
  <%= l(@question.updated_at) -%>
</p>

<p>
  <strong><%= link_to t('activerecord.models.answer'), question_answers_path(@question) -%>:</strong>
</p>

<ul>
  <%- @question.answers.each do |answer| -%>
    <li><%= link_to answer.user.username, answer.user -%>
    (<%=l answer.updated_at %>)<br />
    <%= raw auto_link(textilize(h(answer.body))) -%><br />
    <% unless answer.items.empty? %>
      <ul>
        <% answer.items.each do |item| %>
          <li><%= link_to item.manifestation.original_title, item.manifestation %><br /></li>
        <% end %>
      </ul>
    <% end %>
    </li>
  <%- end -%>
</ul>

</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('question.answer_question'), new_question_answer_path(@question) -%></li>
    <%- if can? :update, @question -%>
      <li><%= link_to t('page.edit'), edit_question_path(@question) -%></li>
    <%- end -%>
    <li><%= back_to_index(flash[:page_info]) -%></li>
    <li><%= link_to 'レファレンス協同データベース用XMLファイル', question_path(@question, :mode => 'crd', :format => 'xml') -%></li>
  </ul>
</div>

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
enju_question-0.1.0.pre11 app/views/questions/show.html.erb
enju_question-0.1.0.pre10 app/views/questions/show.html.erb
enju_question-0.1.0.pre9 app/views/questions/show.html.erb
enju_question-0.1.0.pre8 app/views/questions/show.html.erb
enju_question-0.1.0.pre7 app/views/questions/show.html.erb
enju_question-0.1.0.pre6 app/views/questions/show.html.erb
enju_question-0.1.0.pre5 app/views/questions/show.html.erb
enju_question-0.1.0.pre4 app/views/questions/show.html.erb
enju_question-0.1.0.pre3 app/views/questions/show.html.erb
enju_question-0.1.0.pre2 app/views/questions/show.html.erb
enju_question-0.1.0.pre app/views/questions/show.html.erb
enju_question-0.0.21 app/views/questions/show.html.erb
enju_question-0.0.20 app/views/questions/show.html.erb
enju_question-0.0.19 app/views/questions/show.html.erb
enju_question-0.0.18 app/views/questions/show.html.erb
enju_question-0.0.17 app/views/questions/show.html.erb
enju_question-0.0.16 app/views/questions/show.html.erb
enju_question-0.0.15 app/views/questions/show.html.erb
enju_question-0.0.14 app/views/questions/show.html.erb
enju_question-0.0.13 app/views/questions/show.html.erb