Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make ds id column value into a hyperlink to search for that uuid #279

Merged
merged 2 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion datalad_registry/templates/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@
{%- for i in pagination -%}
<tr>
<td><a href="{{ i.url }}">{{ i.url }}</a></td>
<td class="mono">{{ i.ds_id if i.ds_id is not none }}</td>
<td class="mono">
{% if i.ds_id is not none %}
<a href="{{ url_for('.overview', filter=i.ds_id) }}">{{ i.ds_id }}</a>
{% endif %}
</td>
<td class="mono">
{{ i.head_describe if i.head_describe is not none }}
</td>
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.local.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
services:
web:
command: [ "bash", "-c",
"pip3 install -U -e . && flask init-db && flask run --host=0.0.0.0 --debug" ]
"git config --global --add safe.directory /app && pip3 install -U -e . && flask init-db && flask run --host=0.0.0.0 --debug" ]
volumes:
- ./:/app
- ./instance:/app/instance