File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sde_indexing_helper/templates/sde_collections Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -150,16 +150,16 @@ <h2 class="title">Welcome back!</h2>
150
150
<!-- Division Column -->
151
151
< td class ="whiteText noBorder "> {{ collection.get_division_display }}</ td >
152
152
153
- <!-- Delta URLs Column - Shows count and links if > 0 -->
153
+ <!-- Delta URLs Column - Shows count and links if >= 0 -->
154
154
< td class ="noBorder centerAlign ">
155
155
< a href =" {% if collection.num_delta_urls >= 0 %} {% url 'sde_collections:delta_urls' collection.pk %} {% endif %} "
156
156
class ="btn btn-sm {% if collection.num_delta_urls >= 0 %}btn-primary {% else %}disabled{% endif %}candidateCount "
157
157
role ="button "> {{ collection.num_delta_urls|intcomma }}</ a >
158
158
</ td >
159
159
160
- <!-- Curated URLs Column - Shows count and links if > 0 -->
160
+ <!-- Curated URLs Column - Shows count and links if >= 0 -->
161
161
< td class ="noBorder centerAlign ">
162
- < a href =" {% if collection.num_curated_urls > 0 %} {% url 'sde_collections:delta_urls' collection.pk %} {% endif %} "
162
+ < a href =" {% if collection.num_curated_urls >= 0 %} {% url 'sde_collections:delta_urls' collection.pk %} {% endif %} "
163
163
class ="btn btn-sm {% if collection.num_curated_urls > 0 %}btn-primary {% else %}disabled{% endif %}candidateCount "
164
164
role ="button "> {{ collection.num_curated_urls|intcomma }}</ a >
165
165
</ td >
You can’t perform that action at this time.
0 commit comments