mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
change titles on calendar page to show the name of the month instead of This Month and Next Month
This commit is contained in:
parent
f43447e33f
commit
bd2b410c7b
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
|||
</div>
|
||||
|
||||
<div class="container">
|
||||
<h2>Due in rest of this month</h2>
|
||||
<h2>Due in rest of <%= Time.zone.now.strftime("%B") %> </h2>
|
||||
<div id="empty_due_this_month" <%= "style=\"display:none\"" unless @due_this_month.empty? %>>
|
||||
No actions due in rest of this month
|
||||
</div>
|
||||
|
@ -41,7 +41,7 @@
|
|||
</div>
|
||||
|
||||
<div class="container">
|
||||
<h2>Due next month and later</h2>
|
||||
<h2>Due in <%= (Time.zone.now+1.month).strftime("%B") %> and later</h2>
|
||||
<div id="empty_due_after_this_month" <%= "style=\"display:none\"" unless @due_after_this_month.empty? %>>
|
||||
No actions due after this month
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue