|
2 | 2 | index.html - template file for homepage |
3 | 3 | part of Sluggo, a free and open source issue tracker |
4 | 4 | Copyright (c) 2020 Slugbotics - see git repository history for individual committers |
5 | | - |
| 5 | +
|
6 | 6 | This Source Code Form is subject to the terms of the Mozilla Public |
7 | 7 | License, v. 2.0. If a copy of the MPL was not distributed with this |
8 | 8 | file, You can obtain one at https://mozilla.org/MPL/2.0/. |
9 | 9 | --> |
10 | | - |
11 | 10 | [[extend "layout.html"]] |
12 | 11 |
|
13 | 12 | [[block page_head]] |
14 | 13 | <link rel="stylesheet" href="[[=URL('static', 'css/pages/index.css')]]"> |
| 14 | +<title>Sluggo</title> |
15 | 15 | [[end]] |
16 | 16 |
|
17 | 17 | <div v-cloak id="hp-target" class="section"> |
|
81 | 81 | <!-- generic debug --> |
82 | 82 | <!-- <p>User {{e.web_action_user_name}} performed action {{e.type}} with content {{e.description}} |
83 | 83 | on ticket {{e.related_ticket}} |
84 | | - </p> --> |
| 84 | + </p> --> |
85 | 85 | <p v-if="e.type === 'post-comment'">{{e.web_action_user_name}} posted on Ticket |
86 | 86 | {{e.related_ticket}}: "{{e.description}}" |
87 | 87 | </p> |
|
116 | 116 | <p>You don't have any starred tickets.</p> |
117 | 117 | </div> |
118 | 118 | </div> |
119 | | - <div class="sluggo_pinned_ticket notification" v-for="pt in pinned_tickets" |
| 119 | + <div class="sluggo_pinned_ticket notification" v-for="pt in pinned_tickets" |
120 | 120 | v-bind:class="{'is-info': !checkOverdue(pt) && !checkStarted(pt) && !checkCompleted(pt), 'is-warning': !checkOverdue(pt) && checkStarted(pt) && !checkCompleted(pt), 'is-danger': checkOverdue(pt) && !checkCompleted(pt), 'is-success': checkCompleted(pt)}"> |
121 | 121 | <div class="columns is-mobile"> |
122 | 122 | <div class="column is-10" @click="goToTicket(pt.id)"> |
123 | | - <p class="is-size-5">Ticket {{pt.id}} | {{pt.tag_string}} | {{pt.ticket_title}} |
| 123 | + <p class="is-size-5">Ticket {{pt.id}} | {{pt.tag_string}} | {{pt.ticket_title}} |
124 | 124 | </p> |
125 | 125 | <p v-if="typeof(pt.web_due) !== 'undefined'">Due {{formatBadDate(pt.web_due)}}</p> |
126 | 126 | <!-- <p>Due May 25, 2020.</p> --> |
|
0 commit comments