mirror of
https://github.com/Sudo-JHare/FhirPad.git
synced 2025-06-16 13:10:00 +00:00
Add files via upload
This commit is contained in:
parent
28746893fb
commit
d3c8f0ab8e
@ -15,11 +15,13 @@
|
|||||||
</h5>
|
</h5>
|
||||||
<div class="d-flex justify-content-center gap-2 mb-4">
|
<div class="d-flex justify-content-center gap-2 mb-4">
|
||||||
{% if app.website %}
|
{% if app.website %}
|
||||||
<a href="{{ app.website }}" class="btn btn-primary" aria-label="Visit {{ app.name }} website">Website</a>
|
<a href="{{ app.website }}" class="btn btn-primary" target="_blank" rel="noopener noreferrer" aria-label="Visit {{ app.name }} website">Website</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<button class="btn btn-primary" disabled>Website</button>
|
<button class="btn btn-primary" disabled>Website</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="{{ app.launch_url }}" class="btn btn-outline-primary" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
{% if app.launch_url %}
|
||||||
|
<a href="{{ app.launch_url }}" class="btn btn-outline-primary" target="_blank" rel="noopener noreferrer" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<hr class="my-4">
|
<hr class="my-4">
|
||||||
<div class="row g-4">
|
<div class="row g-4">
|
||||||
@ -62,7 +64,7 @@
|
|||||||
<hr class="small-hr">
|
<hr class="small-hr">
|
||||||
<p>
|
<p>
|
||||||
{% if app.website %}
|
{% if app.website %}
|
||||||
<a href="{{ app.website }}" class="text-decoration-none">{{ app.website }}</a>
|
<a href="{{ app.website }}" class="text-decoration-none" target="_blank" rel="noopener noreferrer">{{ app.website }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
Not specified.
|
Not specified.
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -72,13 +74,13 @@
|
|||||||
<section class="mb-3">
|
<section class="mb-3">
|
||||||
<h5>Security and Privacy Policy</h5>
|
<h5>Security and Privacy Policy</h5>
|
||||||
<hr class="small-hr">
|
<hr class="small-hr">
|
||||||
<p><a href="{{ app.website }}/security-and-privacy" class="text-decoration-none">{{ app.website }}/security-and-privacy</a></p>
|
<p><a href="{{ app.website }}/security-and-privacy" class="text-decoration-none" target="_blank" rel="noopener noreferrer">{{ app.website }}/security-and-privacy</a></p>
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<section class="mb-3">
|
<section class="mb-3">
|
||||||
<h5>Launch URL</h5>
|
<h5>Launch URL</h5>
|
||||||
<hr class="small-hr">
|
<hr class="small-hr">
|
||||||
<p><a href="{{ app.launch_url }}" class="text-decoration-none">{{ app.launch_url }}</a></p>
|
<p><a href="{{ app.launch_url }}" class="text-decoration-none" target="_blank" rel="noopener noreferrer">{{ app.launch_url }}</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section class="mb-3">
|
<section class="mb-3">
|
||||||
<div class="row g-2">
|
<div class="row g-2">
|
||||||
@ -95,7 +97,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<h5>FHIR Compatibility</h5>
|
<h5>FHIR Compatibility</h5>
|
||||||
<hr class="small-hr">
|
<.ttf class="small-hr">
|
||||||
<p>
|
<p>
|
||||||
{% if app.fhir_compatibility %}
|
{% if app.fhir_compatibility %}
|
||||||
<a href="{{ url_for('gallery.gallery', fhir_support=app.fhir_compatibility_id) }}" class="text-decoration-none">{{ app.fhir_compatibility.name }}</a>
|
<a href="{{ url_for('gallery.gallery', fhir_support=app.fhir_compatibility_id) }}" class="text-decoration-none">{{ app.fhir_compatibility.name }}</a>
|
||||||
@ -204,6 +206,7 @@
|
|||||||
border-color: #4dabf7;
|
border-color: #4dabf7;
|
||||||
}
|
}
|
||||||
.btn-outline-primary:hover {
|
.btn-outline-primary:hover {
|
||||||
|
THESE BUTTONS ARE CURRENTLY DISABLED ON THE DETAIL PAGE
|
||||||
background-color: #007bff;
|
background-color: #007bff;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
@ -134,10 +134,10 @@
|
|||||||
<p class="card-text"><small class="text-muted">By {{ app.developer }}</small></p>
|
<p class="card-text"><small class="text-muted">By {{ app.developer }}</small></p>
|
||||||
<div class="d-flex flex-wrap gap-2 mb-2">
|
<div class="d-flex flex-wrap gap-2 mb-2">
|
||||||
{% if app.website %}
|
{% if app.website %}
|
||||||
<a href="{{ app.website }}" class="btn btn-primary btn-sm" aria-label="Visit {{ app.name }} website">Website</a>
|
<a href="{{ app.website }}" class="btn btn-primary btn-sm" target="_blank" rel="noopener noreferrer" aria-label="Visit {{ app.name }} website">Website</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if app.launch_url %}
|
{% if app.launch_url %}
|
||||||
<a href="{{ app.launch_url }}" class="btn btn-outline-primary btn-sm" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
<a href="{{ app.launch_url }}" class="btn btn-outline-primary btn-sm" target="_blank" rel="noopener noreferrer" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<a href="{{ url_for('gallery.app_detail', app_id=app.id) }}" class="btn btn-primary mt-auto">View Details</a>
|
<a href="{{ url_for('gallery.app_detail', app_id=app.id) }}" class="btn btn-primary mt-auto">View Details</a>
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
<p class="card-text"><small class="text-muted">By {{ app.developer }}</small></p>
|
<p class="card-text"><small class="text-muted">By {{ app.developer }}</small></p>
|
||||||
<div class="d-flex flex-wrap gap-2 mb-2">
|
<div class="d-flex flex-wrap gap-2 mb-2">
|
||||||
{% if app.website %}
|
{% if app.website %}
|
||||||
<a href="{{ app.website }}" class="btn btn-primary btn-sm" aria-label="Visit {{ app.name }} website">Website</a>
|
<a href="{{ app.website }}" class="btn btn-primary btn-sm" target="_blank" rel="noopener noreferrer" aria-label="Visit {{ app.name }} website">Website</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if app.launch_url %}
|
{% if app.launch_url %}
|
||||||
<a href="{{ app.launch_url }}" class="btn btn-outline-primary btn-sm" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
<a href="{{ app.launch_url }}" class="btn btn-outline-primary btn-sm" target="_blank" rel="noopener noreferrer" aria-label="Try {{ app.name }} with sandbox data">Try App</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<a href="{{ url_for('gallery.app_detail', app_id=app.id) }}" class="btn btn-primary mt-auto">View Details</a>
|
<a href="{{ url_for('gallery.app_detail', app_id=app.id) }}" class="btn btn-primary mt-auto">View Details</a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user