← Back to team overview

harvest-dev team mailing list archive

[Merge] lp:~dholbach/harvest/581724 into lp:harvest

 

Daniel Holbach has proposed merging lp:~dholbach/harvest/581724 into lp:harvest.

Requested reviews:
  harvest-dev (harvest-dev)

-- 
https://code.launchpad.net/~dholbach/harvest/581724/+merge/26186
Your team harvest-dev is requested to review the proposed merge of lp:~dholbach/harvest/581724 into lp:harvest.
=== modified file 'harvest/opportunities/templates/opportunities/opportunities_by_package.html'
--- harvest/opportunities/templates/opportunities/opportunities_by_package.html	2010-02-22 15:43:51 +0000
+++ harvest/opportunities/templates/opportunities/opportunities_by_package.html	2010-05-27 15:04:25 +0000
@@ -13,7 +13,7 @@
   {% for source in sources.object_list %}
     <li>
       <div class="package_name threshold{{ source.opportunity_class }}">
-        <span class="name">{{ source.name }}</span>
+        <span class="name"><a href="{{source.get_absolute_url}}">{{ source.name }}</a></span>
         <span class="count">
             ({{ source.valid_opportunities.count }} issues)
         </span>

=== modified file 'harvest/templates/opportunities/opportunity_detail.inc.html'
--- harvest/templates/opportunities/opportunity_detail.inc.html	2010-03-08 16:43:38 +0000
+++ harvest/templates/opportunities/opportunity_detail.inc.html	2010-05-27 15:04:25 +0000
@@ -3,13 +3,13 @@
                 <a href="{{opportunity.url}}">{{ opportunity.description }}</a>
 		{% if grouping %}
 		    {% ifequal grouping "type" %}
-                        ({{ opportunity.sourcepackage }})
+                        <a href="{{opportunity.sourcepackage.get_absolute_url}}">({{ opportunity.sourcepackage }})</a>
 		    {% endifequal %}
 		    {% ifequal grouping "package" %}
                         ({{ opportunity.opportunitylist }})
                     {% endifequal %}
 		{% else %}
-                    ({{ opportunity.sourcepackage }} - {{ opportunity.opportunitylist }})
+                    (<a href="{{opportunity.sourcepackage.get_absolute_url}}">({{ opportunity.sourcepackage }})</a> - {{ opportunity.opportunitylist }})
 		{% endif %}
 		{% if opportunity.experience %}
 		    <span class="experience{{ opportunity.experience }}"></span>

=== modified file 'harvest/templates/opportunities/opportunity_index.html'
--- harvest/templates/opportunities/opportunity_index.html	2010-02-22 15:43:51 +0000
+++ harvest/templates/opportunities/opportunity_index.html	2010-05-27 15:04:25 +0000
@@ -11,7 +11,7 @@
 {% if sources.object_list %}
 <ul>
 {% for source in sources.object_list %}
-<li>{{ source.name }}
+<li><a href="{{source.get_absolute_url}}">{{ source.name }}</a>
 <ul>
 {% for opportunity in source.valid_opportunites %}
     {% include "opportunities/opportunity_detail.inc.html" %}