Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
イベントのウォール、日付表示がバグってたの修正した
Browse files Browse the repository at this point in the history
  • Loading branch information
giginet committed Dec 6, 2014
1 parent 6c51acf commit 242b015
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/templates/activities/events/event_updated.html
Expand Up @@ -2,17 +2,17 @@
{% block history-item %}
{% include "components/small_avatar.html" with user=object.organizer render_username=False %}
{% if period_start_created or period_start_updated %}
開始日時が<strong>{{ object.period_start|date:"%m/%d %H:%M" }}</strong>に設定されました
開始日時が<strong>{{ object.period_start|date:"m/d H:i" }}</strong>に設定されました
{% elif period_end_created or period_end_updated %}
終了日時が<strong>{{ object.period_start|date:"%m/%d %H:%M" }}</strong>に設定されました
終了日時が<strong>{{ object.period_start|date:"m/d H:i" }}</strong>に設定されました
{% elif place_created or place_updated %}
開催場所が<strong>{{ object.place }}</strong>に設定されました
{% elif category_created or category_updated %}
カテゴリが「<strong>{{ object.category.label }}</strong>」に設定されました
{% elif number_restriction_created or number_restriction_updated %}
参加上限が「<strong>{{ object.number_restriction }}</strong>」人に設定されました
{% elif attendance_deadline_created or attendance_deadline_updated %}
募集締め切りが<strong>{{ object.attendance_deadline|date:"%m/%d %H:%M" }}</strong>に設定されました
募集締め切りが<strong>{{ object.attendance_deadline|date:"m/d H:i" }}</strong>に設定されました
{% elif period_start_deleted %}
開始日時が<strong>未定</strong>に設定されました
{% elif period_end_deleted %}
Expand Down

0 comments on commit 242b015

Please sign in to comment.