Skip to content

Commit

Permalink
[#2949] Remove links from endpoints in data api popup
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Oct 2, 2012
1 parent 40c10e0 commit 2923395
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ckan/templates/ajax_snippets/api_info.html
Expand Up @@ -40,19 +40,19 @@ <h3>
<tbody>
<tr>
<th>Create</th>
<td><code><a href="{{ datastore_root_url }}/datastore_create" target="_blank">{{ datastore_root_url }}/datastore_create</a></code></td>
<td><code>{{ datastore_root_url }}/datastore_create</code></td>
</tr>
<tr>
<th>Update / Insert</th>
<td><code><a href="{{ datastore_root_url }}/datastore_upsert" target="_blank">{{ datastore_root_url }}/datastore_upsert</a></code></td>
<td><code>{{ datastore_root_url }}/datastore_upsert</code></td>
</tr>
<tr>
<th>Query</th>
<td><code><a href="{{ datastore_root_url }}/datastore_search" target="_blank">{{ datastore_root_url }}/datastore_search</a></code></td>
<td><code>{{ datastore_root_url }}/datastore_search</code></td>
</tr>
<tr>
<th>Query (via SQL)</th>
<td><code><a href="{{ datastore_root_url }}/datastore_search_sql" target="_blank">{{ datastore_root_url }}/datastore_search_sql</a></code></td>
<td><code>{{ datastore_root_url }}/datastore_search_sql</code></td>
</tr>

</tbody>
Expand Down

0 comments on commit 2923395

Please sign in to comment.