diff options
-rw-r--r-- | main/fixtures/repos.json | 20 | ||||
-rw-r--r-- | templates/base.html | 1 | ||||
-rw-r--r-- | templates/public/index.html | 6 |
3 files changed, 23 insertions, 4 deletions
diff --git a/main/fixtures/repos.json b/main/fixtures/repos.json index bc474d3e..a89af7b5 100644 --- a/main/fixtures/repos.json +++ b/main/fixtures/repos.json @@ -58,5 +58,25 @@ "name": "Testing", "bugs_project": 1 } + }, + { + "pk": 10, + "model": "main.repo", + "fields": { + "svn_root": "", + "testing": true, + "name": "Libre-Testing", + "bugs_project": 0 + } + }, + { + "pk": 11, + "model": "main.repo", + "fields": { + "svn_root": "", + "testing": false, + "name": "Libre", + "bugs_project": 0 + } } ] diff --git a/templates/base.html b/templates/base.html index d423845a..1a4e7da5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -20,6 +20,7 @@ <li id="anb-home"><a href="/" title="Parabola news, packages, projects and more">Home</a></li> <li id="anb-packages"><a href="/packages/" title="Package Database">Packages</a></li> <li id="anb-wiki"><a href="http://wiki.parabolagnulinux.org" title="Community documentation">Wiki</a></li> + <li id="anb-bugs"><a href="http://bugs.parabolagnulinux.org" title="Issue Tracker">Bugs</a></li> <li id="anb-download"><a href="{% url page-download as pdl %}{{ pdl }}" title="Get Parabola">Download</a></li> </ul> </div> diff --git a/templates/public/index.html b/templates/public/index.html index d83a8aaf..b81c0de4 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -147,10 +147,8 @@ title="View the available package groups">Package Groups</a></li> <li><a href="http://projects.parabolagnulinux.org" title="Official Parabola projects (git)">Projects in Git</a></li> - <li><a href="http://wiki.parabolagnulinux.org/Category:Parabola/Hacking" - title="Hacking on Parabola">Parabola Hacking</a></li> - <li><a href="http://wiki.parabolagnulinux.org/TODO" - title="Help with the Parabola development">TODO list</a></li> + <li><a href="http://bugs.parabolagnulinux.org/" + title="Parabola's Issue Tracker">Issue Tracker</a></li> {% comment %} <li><a href="/todolists/" title="Todo Lists">Todo Lists</a></li> |