소스 검색

Show last updated time in operations.

master
Ben Kurtovic 7 년 전
부모
커밋
37fbd63a3c
2개의 변경된 파일12개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -0
      static/campaigns.css
  2. +6
    -1
      templates/campaigns/operation.mako

+ 6
- 0
static/campaigns.css 파일 보기

@@ -210,6 +210,12 @@ h2 .disabled-info {
color: #AAA;
}

.last-updated {
margin-bottom: 1em;
font-size: 90%;
font-style: italic;
}

@media (min-width: 800px) {
#operations {
margin: 1em 0;


+ 6
- 1
templates/campaigns/operation.mako 파일 보기

@@ -1,5 +1,6 @@
<%!
from calefaction.format import format_isk
from calefaction.format import format_isk, format_utctime

%>
<%inherit file="../_default.mako"/>
<%namespace file="renderers.mako" import="render_summary"/>
@@ -51,3 +52,7 @@
</div>
% endif
</div>
<div class="last-updated">
<% last_updated, _ = g.campaign_db.check_operation(cname, opname) %>
Last updated: <abbr title="${last_updated.strftime("%Y-%m-%d %H:%M:%S")}">${format_utctime(last_updated) | h}</abbr>
</div>

불러오는 중...
취소
저장