Merge remote-tracking branch 'upstream/pull/4523'
This commit is contained in:
commit
d8cca976c0
12 changed files with 133 additions and 30 deletions
|
@ -1,26 +1,5 @@
|
|||
<article class='diary_post border-top border-grey py-3<%= " text-muted px-3 bg-danger bg-opacity-10" unless diary_entry.visible %> user_<%= diary_entry.user.id %>'>
|
||||
<div class='mb-3'>
|
||||
<% if @user %>
|
||||
<h2><%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %></h2>
|
||||
<% else %>
|
||||
<div class="row">
|
||||
<div class="col-auto">
|
||||
<%= user_thumbnail diary_entry.user %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h2><%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %></h2>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<small class='text-muted'>
|
||||
<%= t(".posted_by_html", :link_user => (link_to diary_entry.user.display_name, user_path(diary_entry.user)), :created => l(diary_entry.created_at, :format => :blog), :language_link => (link_to diary_entry.language.name, :controller => "diary_entries", :action => "index", :display_name => nil, :language => diary_entry.language_code)) %>
|
||||
<% if (l(diary_entry.updated_at, :format => :blog) != l(diary_entry.created_at, :format => :blog)) %>
|
||||
<%= t(".updated_at_html", :updated => l(diary_entry.updated_at, :format => :blog)) %>
|
||||
<% end %>
|
||||
</small>
|
||||
|
||||
</div>
|
||||
<%= render :partial => "diary_entry_heading", :object => diary_entry, :as => "diary_entry" %>
|
||||
|
||||
<div class="richtext text-break" xml:lang="<%= diary_entry.language_code %>" lang="<%= diary_entry.language_code %>">
|
||||
<%= diary_entry.body.to_html %>
|
||||
|
|
21
app/views/diary_entries/_diary_entry_heading.html.erb
Normal file
21
app/views/diary_entries/_diary_entry_heading.html.erb
Normal file
|
@ -0,0 +1,21 @@
|
|||
<div class='mb-3'>
|
||||
<% if @user %>
|
||||
<h2><%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %></h2>
|
||||
<% else %>
|
||||
<div class="row">
|
||||
<div class="col-auto">
|
||||
<%= user_thumbnail diary_entry.user %>
|
||||
</div>
|
||||
<div class="col">
|
||||
<h2><%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %></h2>
|
||||
</div>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<small class='text-muted'>
|
||||
<%= t("diary_entries.diary_entry.posted_by_html", :link_user => (link_to diary_entry.user.display_name, user_path(diary_entry.user)), :created => l(diary_entry.created_at, :format => :blog), :language_link => (link_to diary_entry.language.name, :controller => "diary_entries", :action => "index", :display_name => nil, :language => diary_entry.language_code)) %>
|
||||
<% if (l(diary_entry.updated_at, :format => :blog) != l(diary_entry.created_at, :format => :blog)) %>
|
||||
<%= t("diary_entries.diary_entry.updated_at_html", :updated => l(diary_entry.updated_at, :format => :blog)) %>
|
||||
<% end %>
|
||||
</small>
|
||||
</div>
|
12
app/views/diary_entries/subscribe.html.erb
Normal file
12
app/views/diary_entries/subscribe.html.erb
Normal file
|
@ -0,0 +1,12 @@
|
|||
<% content_for :heading do %>
|
||||
<h1><%= t ".heading", :user => @diary_entry.user.display_name %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "diary_entry_heading", :object => @diary_entry, :as => "diary_entry" %>
|
||||
|
||||
<%= bootstrap_form_tag do |f| %>
|
||||
<% if params[:referer] -%>
|
||||
<%= f.hidden_field :referer, :value => params[:referer] %>
|
||||
<% end -%>
|
||||
<%= f.primary t(".button") %>
|
||||
<% end %>
|
12
app/views/diary_entries/unsubscribe.html.erb
Normal file
12
app/views/diary_entries/unsubscribe.html.erb
Normal file
|
@ -0,0 +1,12 @@
|
|||
<% content_for :heading do %>
|
||||
<h1><%= t ".heading", :user => @diary_entry.user.display_name %></h1>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "diary_entry_heading", :object => @diary_entry, :as => "diary_entry" %>
|
||||
|
||||
<%= bootstrap_form_tag do |f| %>
|
||||
<% if params[:referer] -%>
|
||||
<%= f.hidden_field :referer, :value => params[:referer] %>
|
||||
<% end -%>
|
||||
<%= f.primary t(".button") %>
|
||||
<% end %>
|
|
@ -15,4 +15,7 @@
|
|||
:commenturl => link_to(@commenturl, @commenturl) + tag.br,
|
||||
:replyurl => link_to(@replyurl, @replyurl) %>
|
||||
</p>
|
||||
<p><%= t ".footer_unsubscribe_html",
|
||||
:unsubscribeurl => link_to(@unsubscribeurl, @unsubscribeurl) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
|
|
@ -7,3 +7,5 @@
|
|||
==
|
||||
|
||||
<%= t '.footer', :readurl => @readurl, :commenturl => @commenturl, :replyurl => @replyurl %>
|
||||
|
||||
<%= t '.footer_unsubscribe', :unsubscribeurl => @unsubscribeurl %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue