OSDN Git Service

admin: add recent story list to sidebar in story editor
[newslash/newslash.git] / src / newslash_web / templates / admin / story / edit.html.tt2
index 76ba591..c3fb6c6 100644 (file)
       [% helpers.insert_recaptcha %]
     </div>
   </div>
-  [%- INCLUDE common/sidebar -%]
+  <div class="sidebar">
+    <div class="sidebar-item">
+      <h2>最新/公開予定記事</h2>
+      <ul>
+       [%- FOREACH item IN recent_stories %]
+       <li>
+          <span class="title">
+           <a href="/story/[% item.sid %]/">[% item.title %]</a>
+           ([% helpers.format_timestamp("mysql", item.create_time, "format_string", "%m/%d %H:%M") %])
+         </span>
+       </li>
+       [%- END %]
+      </ul>
+    </div>
+  </div>
 </div>
 
 [% INCLUDE common/components/article_editor %]