Fixing the button on the featured datasets page

This commit is contained in:
Michelle Thomas 2015-12-16 16:34:51 -08:00
parent 6155ff8de6
commit 6bbcbe524a
1 changed files with 2 additions and 2 deletions

View File

@ -18,11 +18,11 @@ Featured Datasets
<tr>
<td>
<div id="data-title">{{ dataset.table_name }}</div>
</br> {{ dataset.description }}
<p>{{ dataset.description }}</p>
</td>
<td class="small_table">{{ dataset.database }}</td>
<td class="small_table">{{ dataset.owner }}</td>
<td class="small_table"><button type="button" class="btn btn-primary" href="{{ dataset.default_endpoint }}">Visualize it!</button></td>
<td class="small_table"><a class="btn btn-primary" href="{{ dataset.default_endpoint }}">Visualize it!</a></td>
</tr>
{% endfor %}
</tbody>