fix(templates): enhance login/signup and identifier creation links

Updated the login button text to "Login or Sign Up" for clarity and removed the redundant "Email Login" option on the home page. Fixed the identifier list to properly handle cases where 'suffix' might be null, ensuring correct URL generation and display formatting. These changes improve user experience and address navigation issues.
This commit is contained in:
Kumi 2024-06-23 09:05:29 +02:00
parent c70b190c23
commit e53d7e3bc2
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 4 additions and 7 deletions

View file

@ -73,10 +73,7 @@
Ready to get started? Create an account or log in to begin managing your Ready to get started? Create an account or log in to begin managing your
DOIs. DOIs.
</p> </p>
<a class="btn btn-primary" href="{% url 'login' %}">Login</a> <a class="btn btn-primary" href="{% url 'login' %}">Login or Sign Up</a>
<a class="btn btn-secondary" href="{% url 'send_login_email' %}"
>Email Login</a
>
{% endif %} {% endif %}
</div> </div>

View file

@ -1,12 +1,12 @@
{% extends "base_generic.html" %} {% block title %}Identifiers{% endblock %} {% extends "base_generic.html" %} {% block title %}Identifiers{% endblock %}
{% block content %} {% block content %}
<div class="container mt-5"> <div class="container mt-5">
<h1>Identifiers for {{ suffix.name }}</h1> <h1>Identifiers{% if suffix %} for {{ suffix.name }}{% endif %}</h1>
<ul class="list-group"> <ul class="list-group">
{% for identifier in object_list %} {% for identifier in object_list %}
<li class="list-group-item"> <li class="list-group-item">
<a <a
href="{% url 'identifier_detail' suffix_pk=suffix.pk pk=identifier.pk %}" href="{% url 'identifier_detail' suffix_pk=identifier.suffix.pk pk=identifier.pk %}"
>{{ identifier.identifier }}</a >{{ identifier.identifier }}</a
> >
</li> </li>
@ -14,7 +14,7 @@
</ul> </ul>
<a <a
class="btn btn-primary mt-3" class="btn btn-primary mt-3"
href="{% url 'identifier_create' suffix_pk=suffix.pk %}" href="{% if suffix.pk %}{% url 'identifier_create' suffix_pk=suffix.pk %}{% else %}{% url 'identifier_create' %}{% endif %}"
>Create new identifier</a >Create new identifier</a
> >
<a class="btn btn-link mt-3" href="{% url 'suffix_list' %}" <a class="btn btn-link mt-3" href="{% url 'suffix_list' %}"