5 Commits

Author SHA1 Message Date
19c37c2598 fix: remove search 2025-11-13 16:13:16 +13:00
39faab3d11 [Fix] Add extra styles to make show login form (#203)
FIx display on the login page

Reviewed-on: enviPath/enviPy#203
Co-authored-by: Tobias O <tobias.olenyi@envipath.com>
Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
2025-11-13 09:11:32 +13:00
4e80cd63cd [Fix] Added loading of envipytags (#201)
Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#201
2025-11-13 08:43:21 +13:00
6592f0a68e [Fix] Package Link + Adjusted License container (#197)
Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#197
2025-11-13 08:35:42 +13:00
21d30a923f [Refactor] Large scale formatting/linting (#193)
All html files now prettier formatted and fixes for incompatible blocks applied

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#193
Co-authored-by: Tobias O <tobias.olenyi@envipath.com>
Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
2025-11-12 22:47:10 +13:00
6 changed files with 30 additions and 13 deletions

View File

@ -1,5 +1,6 @@
{% extends "framework.html" %} {% extends "framework.html" %}
{% load static %} {% load static %}
{% load envipytags %}
{% block content %} {% block content %}
<div class="panel-group" id="reviewListAccordion"> <div class="panel-group" id="reviewListAccordion">
<div class="panel panel-default"> <div class="panel panel-default">

View File

@ -151,11 +151,6 @@
>Package</a >Package</a
> >
</li> </li>
<li>
<a href="{{ meta.server_url }}/search" id="searchLink"
>Search</a
>
</li>
<li> <li>
<a href="{{ meta.server_url }}/model" id="modelLink" <a href="{{ meta.server_url }}/model" id="modelLink"
>Modelling</a >Modelling</a

View File

@ -113,7 +113,7 @@
{# License - inside paper if present #} {# License - inside paper if present #}
{% if meta.url_contains_package and meta.current_package.license %} {% if meta.url_contains_package and meta.current_package.license %}
<div class="collapse-arrow bg-base-200 collapse m-8"> <div class="collapse-arrow bg-base-200 collapse p-8">
<input type="checkbox" checked /> <input type="checkbox" checked />
<div class="collapse-title text-xl font-medium">License</div> <div class="collapse-title text-xl font-medium">License</div>
<div class="collapse-content"> <div class="collapse-content">

View File

@ -27,7 +27,7 @@
class="dropdown-content menu bg-base-100 rounded-box z-1 w-52 p-2 shadow-sm" class="dropdown-content menu bg-base-100 rounded-box z-1 w-52 p-2 shadow-sm"
> >
<li> <li>
<a href="{{ meta.server_url }}/Package" id="packageLink">Package</a> <a href="{{ meta.server_url }}/package" id="packageLink">Package</a>
</li> </li>
<li> <li>
<a href="{{ meta.server_url }}/pathway" id="pathwayLink">Pathway</a> <a href="{{ meta.server_url }}/pathway" id="pathwayLink">Pathway</a>

View File

@ -3,12 +3,31 @@
{% block title %}enviPath - Sign In{% endblock %} {% block title %}enviPath - Sign In{% endblock %}
{% block extra_styles %} {% block extra_styles %}
/* Tab styling */ .tab-content { display: none; } .tab-content.active { <style>
display: block; } input[type="radio"].tab-radio { display: none; } .tab-label /* Tab styling */
{ cursor: pointer; padding: 0.75rem 1.5rem; border-bottom: 2px solid .tab-content {
transparent; transition: all 0.3s ease; } .tab-label:hover { background-color: display: none;
rgba(0, 0, 0, 0.05); } input[type="radio"].tab-radio:checked + .tab-label { }
border-bottom-color: #3b82f6; font-weight: 600; } .tab-content.active {
display: block;
}
input[type="radio"].tab-radio {
display: none;
}
.tab-label {
cursor: pointer;
padding: 0.75rem 1.5rem;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
}
.tab-label:hover {
background-color: rgba(0, 0, 0, 0.05);
}
input[type="radio"].tab-radio:checked + .tab-label {
border-bottom-color: #3b82f6;
font-weight: 600;
}
</style>
{% endblock %} {% endblock %}
{% block content %} {% block content %}

View File

@ -18,6 +18,8 @@
rel="stylesheet" rel="stylesheet"
type="text/css" type="text/css"
/> />
{% block extra_styles %}{% endblock %}
</head> </head>
<body class="bg-base-100"> <body class="bg-base-100">
<div class="flex h-screen"> <div class="flex h-screen">