Skip to content

Commit

Permalink
job_seekers_views: add a button to create a job seeker without applying
Browse files Browse the repository at this point in the history
  • Loading branch information
EwenKorr committed Jan 28, 2025
1 parent 3d96541 commit 1c00d55
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions itou/templates/job_seekers_views/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@
{% load static %}
{% load str_filters %}
{% load format_filters %}
{% load url_add_query %}

{% block title %}Candidats {{ block.super }}{% endblock %}

{% block title_content %}
<div class="d-flex flex-column flex-md-row gap-3 justify-content-md-between">
<h1 class="m-0">Candidats</h1>
<div class="d-flex flex-column flex-md-row gap-3" role="group" aria-label="Actions sur les candidatures">
{% url "job_seekers_views:get_or_create_start" as get_or_create_url %}
<a href="{% url_add_query get_or_create_url tunnel='standalone' from_url=request.path|urlencode %}" class="btn btn-lg btn-secondary btn-ico">
<i class="ri-user-add-line fw-medium" aria-hidden="true"></i>
<span>Créer un compte candidat</span>
</a>
<a href="{% url 'search:employers_results' %}" class="btn btn-lg btn-primary btn-ico">
<i class="ri-draft-line fw-medium" aria-hidden="true"></i>
<span>Postuler pour un candidat</span>
Expand Down

0 comments on commit 1c00d55

Please sign in to comment.