diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-23 15:29:11 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-23 15:29:11 -0400 |
commit | a5512d91df66e70f5c79c1f24878eccff125d13d (patch) | |
tree | 9d0645fdae2690a6a0e5bc0a9eb2e7b4b153a93a /templates | |
parent | 955a1a68364fd3ca8c9b17d59ef6d6f206660ca5 (diff) |
reduce differences
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/details.html | 10 | ||||
-rw-r--r-- | templates/packages/search.html | 2 | ||||
-rw-r--r-- | templates/public/index.html | 4 |
3 files changed, 9 insertions, 7 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 0442db7e..a14271b3 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -16,9 +16,11 @@ <div id="actionlist"> <h4>Package Actions</h4> <ul class="small"> - <li><a href="{% bugs_list pkg %}" title="View existing bug tickets for {{ pkg.pkgname }}">Bug Reports</a></li> - <li><a href="{% bug_report pkg %}" title="Report bug for {{ pkg.pkgname }}">Report a Bug</a></li> - <li><a href="{% flag_unfree pkg %}" title="Report {{ pkg.pkgname }} as unfree">Report as unfree</a></li> + <li> + <a href="{% bugs_list pkg %}" title="View existing bug tickets for {{ pkg.pkgname }}">Bug Reports</a> / + <a href="{% bug_report pkg %}" title="Report new bug for {{ pkg.pkgname }}">Add New Bug</a> + / <a href="{% flag_unfree pkg %}" title="Report {{ pkg.pkgname }} as unfree">Report as unfree</a> + </li> <li><a href="{% get_wiki_link pkg %}" title="Search wiki for {{ pkg.pkgname }}">Search Wiki</a></li> {% if pkg.flag_date %} <li><span class="flagged">Flagged out-of-date on {{ pkg.flag_date|date }}</span></li> @@ -39,7 +41,7 @@ onclick="return !window.open('/packages/flaghelp/','FlagHelp', 'height=350,width=450,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=no');">(?)</a></li> {% endif %} - <li><a href="{% get_download_link pkg %}" rel="nofollow" title="Download {{ pkg.pkgname }} from mirror">Download From Mirror</a></li> + <li><a href="download/" rel="nofollow" title="Download {{ pkg.pkgname }} from mirror">Download From Mirror</a></li> </ul> {% if perms.main.change_package %} diff --git a/templates/packages/search.html b/templates/packages/search.html index bbf0f75a..e1d3ae30 100644 --- a/templates/packages/search.html +++ b/templates/packages/search.html @@ -75,7 +75,7 @@ {% endif %} <td>{{ pkg.arch.name }}</td> <td>{{ pkg.repo.name|capfirst }}</td> - <td><{% pkg_details_link pkg %}</td> + <td>{% pkg_details_link pkg %}</td> {% if pkg.flag_date %} <td><span class="flagged">{{ pkg.full_version }}</span></td> {% else %} diff --git a/templates/public/index.html b/templates/public/index.html index f7e58cb3..02d0cb14 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -154,8 +154,8 @@ <h4>Development</h4> <ul> - <li><a href="https://projects.parabolagnulinux.org" - title="Official Parabola projects (git)">Projects in Git</a></li> + <li><a href="{{ PROJECTS_URL }}" + title="Official {{BRANDING_SHORTNAME}} projects (git)">Projects in Git</a></li> {% comment %} <li><a href="{% url 'page-svn' %}" title="View SVN entries for packages">SVN Repositories</a></li> |