Google Calendar Coupling

- better location in gcal events (lat,long)
- more verbose instruction, howto use
- bugfixes in event tabular view
This commit is contained in:
Martin Bauer
2014-06-22 14:10:53 +02:00
parent 568376fbe7
commit 828901111e
6 changed files with 31 additions and 2 deletions

View File

@@ -28,6 +28,8 @@
.with_comment {
font-style: italic;
font-weight: 900;
font-size: 11px;
}
.usernameHeader {
font-size:10px;
@@ -210,11 +212,16 @@
<span class="badge badge-important eventButton" title="{{p.comment}}" data-status="{{p.status}}">
<span class="text {% if p.comment %}with_comment{% endif %}">Nein</span>
</span>
{% else %}
{% elif p.status == "?" %}
<span class="badge badge-warning eventButton" title="{{p.comment}}" data-status="{{p.status}}">
<span class="text {% if p.comment %}with_comment{% endif %}">?</span>
</span>
{% else %}
<span class="badge eventButton" title="{{p.comment}}" data-status="{{p.status}}">
<span class="text {% if p.comment %}with_comment{% endif %}">-</span>
</span>
{% endif %}
</td>
{% endif %}