소스 검색

Fix Postgres/sqlite type error by using Postgres, closes #7

tags/last-sinatra-version
Adrian Short 12 년 전
부모
커밋
6883b77410
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      views/candidate.haml

+ 2
- 2
views/candidate.haml 파일 보기

@@ -22,8 +22,8 @@
%td{ :style => "background-color: #{ccy['party_colour']}" }  
%td
%a{ :href => "/bodies/#{ccy['body_slug']}/elections/#{ccy['d']}" }
- bits = ccy['d'].split("-")
= long_date(Time.mktime(bits[0], bits[1], bits[2]))
-# Postgres returns ccy['d'] as a Date and sqlite returns it as a String
= long_date(ccy['d'].to_time)
%td= ccy['party_name']
%td
%a{ :href => "/bodies/#{ccy['body_slug']}" }


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