-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathjob_board_list.html
More file actions
24 lines (24 loc) · 936 Bytes
/
Copy pathjob_board_list.html
File metadata and controls
24 lines (24 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}
{% from "macros/job_list.html" import render_job_list %}
{% from "macros/pagination_bootstrap.html" import render_pagination %}
{% block title %}{{ this.title }}{% endblock %}
{% block page_class %}navbar-white navbar-default-on{% endblock %}
{% block page_header %}
{% include 'includes/bootstrap/banner_job.html' %}
{% endblock %}
{% block content %}
<div class="container">
<div class="job-board">
{% for child in this.pagination.items|sort(attribute='_id', reverse=True) %}
{{ render_job_list(child, from_index=true, loop=loop) }}
{% else %}
<div class="alert alert-warning" role="alert">
<strong>Ops!</strong> Não existe nenhuma oportunidade cadastrada.
</div>
{% endfor %}
{% if this.pagination.items %}
{{ render_pagination(this.pagination) }}
{% endif %}
</div>
</div>
{% endblock %}