Skip to content
This repository was archived by the owner on Jan 10, 2021. It is now read-only.

Commit 4088205

Browse files
committed
Added titles for each page in Sluggo, can be edited as needed
1 parent 02bb015 commit 4088205

File tree

8 files changed

+21
-22
lines changed

8 files changed

+21
-22
lines changed

templates/auth.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!--
2-
auth.html - template file for auth page, derived from py4web
2+
auth.html - template file for auth page, derived from py4web
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
10+
[[block page_head]]<title>Sluggo/Sign-in</title>[[end]]
1111
[[extend "layout.html"]]
1212

1313
<div class="container title has-text-centered">

templates/create_profile.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
create_profile.html - template file for profile creation page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
10+
[[block page_head]]<title>Sluggo/Create User</title>[[end]]
1111
[[extend 'layout.html']]
1212
<div id="vue-target">
1313
<section class="section">

templates/help.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
help.html - template file for help page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
10+
[[block page_head]]<title>Sluggo/Help</title>[[end]]
1111
[[extend 'layout.html']]
1212
<div id="help-target">
1313
<section class="section">

templates/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
index.html - template file for homepage
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
1110
[[extend "layout.html"]]
1211

1312
[[block page_head]]
1413
<link rel="stylesheet" href="[[=URL('static', 'css/pages/index.css')]]">
14+
<title>Sluggo</title>
1515
[[end]]
1616

1717
<div v-cloak id="hp-target" class="section">
@@ -81,7 +81,7 @@
8181
<!-- generic debug -->
8282
<!-- <p>User {{e.web_action_user_name}} performed action {{e.type}} with content {{e.description}}
8383
on ticket {{e.related_ticket}}
84-
</p> -->
84+
</p> -->
8585
<p v-if="e.type === 'post-comment'">{{e.web_action_user_name}} posted on Ticket
8686
{{e.related_ticket}}: "{{e.description}}"
8787
</p>
@@ -116,11 +116,11 @@
116116
<p>You don't have any starred tickets.</p>
117117
</div>
118118
</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"
120120
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)}">
121121
<div class="columns is-mobile">
122122
<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}}
124124
</p>
125125
<p v-if="typeof(pt.web_due) !== 'undefined'">Due {{formatBadDate(pt.web_due)}}</p>
126126
<!-- <p>Due May 25, 2020.</p> -->

templates/specific_user.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
specific_user.html - template file for user profile page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
10+
[[block page_head]]<title>Sluggo/User/[[=XML(id)]]</title>[[end]]
1111
[[extend 'layout.html']]
1212
<div class="section" id="vue-user">
1313
<div class="container">

templates/ticket_details.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22
ticket_details.html - template file for ticket details page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
1110
[[extend 'layout.html']]
1211

1312
[[block page_head]]
14-
13+
<title>Sluggo/Ticket Details</title>
1514
<link rel="stylesheet" href="[[=URL('static/components/add_subticket_modal/add_subticket_modal.css')]]">
1615
<link rel="stylesheet" href="[[=URL('static/components/ticket_modal/ticket_modal.css')]]">
1716
[[end]]
@@ -214,4 +213,4 @@
214213
<script src="components/ticket_modal/ticket_modal.js"></script>
215214
<script src="components/comment/comment.js"></script>
216215
<script src="components/add_subticket_modal/add_subticket_modal.js"></script>
217-
[[end]]
216+
[[end]]

templates/tickets.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
tickets.html - template file for tickets page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
1110
[[extend 'layout.html']]
1211

1312
[[block page_head]]
13+
<title>Sluggo/Tickets</title>
1414
<link rel="stylesheet" href="[[=URL('static/components/ticket_modal/ticket_modal.css')]]">
1515
[[end]]
1616

templates/users.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
users.html - template file for users page
33
part of Sluggo, a free and open source issue tracker
44
Copyright (c) 2020 Slugbotics - see git repository history for individual committers
5-
5+
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
88
file, You can obtain one at https://mozilla.org/MPL/2.0/.
99
-->
10-
10+
[[block page_head]]<title>Sluggo/Users</title>[[end]]
1111
[[extend 'layout.html']]
1212
<div class="section" id="vue-users">
1313
<div class="container">

0 commit comments

Comments
 (0)