changé la photo du site pour le logo UdeS
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 148 KiB |
@@ -96,6 +96,7 @@ a:hover { color: var(--primary-dark); }
|
|||||||
}
|
}
|
||||||
|
|
||||||
.logo i { color: var(--primary); font-size: 1.6rem; }
|
.logo i { color: var(--primary); font-size: 1.6rem; }
|
||||||
|
.logo-img { height: 40px; width: auto; }
|
||||||
|
|
||||||
.user-badge {
|
.user-badge {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -607,6 +608,12 @@ a:hover { color: var(--primary-dark); }
|
|||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.auth-logo-img {
|
||||||
|
height: 80px;
|
||||||
|
width: auto;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
.auth-header h2 {
|
.auth-header h2 {
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 148 KiB |
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}400 Bad Request - TryoutPro{% endblock %}
|
{% block title %}400 Bad Request - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Bad Request{% endblock %}
|
{% block page_title %}Bad Request{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="error-container">
|
<div class="error-container">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}403 Forbidden - TryoutPro{% endblock %}
|
{% block title %}403 Forbidden - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Access Denied{% endblock %}
|
{% block page_title %}Access Denied{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="error-container">
|
<div class="error-container">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}404 Not Found - TryoutPro{% endblock %}
|
{% block title %}404 Not Found - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Page Not Found{% endblock %}
|
{% block page_title %}Page Not Found{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="error-container">
|
<div class="error-container">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}429 Too Many Requests - TryoutPro{% endblock %}
|
{% block title %}429 Too Many Requests - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Rate Limit Exceeded{% endblock %}
|
{% block page_title %}Rate Limit Exceeded{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="error-container">
|
<div class="error-container">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}500 Server Error - TryoutPro{% endblock %}
|
{% block title %}500 Server Error - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Internal Server Error{% endblock %}
|
{% block page_title %}Internal Server Error{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="error-container">
|
<div class="error-container">
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{% block title %}Team Tryout Management{% endblock %}</title>
|
<title>{% block title %}UdeS team manager{% endblock %}</title>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
||||||
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🏆</text></svg>">
|
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🏆</text></svg>">
|
||||||
@@ -13,8 +13,8 @@
|
|||||||
<nav class="sidebar" id="sidebar">
|
<nav class="sidebar" id="sidebar">
|
||||||
<div class="sidebar-header">
|
<div class="sidebar-header">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<i class="fas fa-trophy"></i>
|
<img src="{{ url_for('static', filename='images/UdeS_logo.png') }}" alt="UdeS Logo" class="logo-img">
|
||||||
<span>TryoutPro</span>
|
<span>UdeS team manager</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="user-badge">
|
<div class="user-badge">
|
||||||
<div class="user-avatar">
|
<div class="user-avatar">
|
||||||
@@ -160,9 +160,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="auth-container">
|
<div class="auth-container">
|
||||||
<div class="auth-header">
|
<div class="auth-header">
|
||||||
<i class="fas fa-trophy"></i>
|
<img src="{{ url_for('static', filename='images/UdeS_logo.png') }}" alt="UdeS Logo" class="auth-logo-img">
|
||||||
<h2>TryoutPro</h2>
|
<h2>UdeS team manager</h2>
|
||||||
<p>Team Tryout Management System</p>
|
<p>UdeS team manager</p>
|
||||||
</div>
|
</div>
|
||||||
{% block auth_content %}{% endblock %}
|
{% block auth_content %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
{# Page Header Macro - renders title and breadcrumb #}
|
{# Page Header Macro - renders title and breadcrumb #}
|
||||||
{% macro page_header(title, breadcrumb) %}
|
{% macro page_header(title, breadcrumb) %}
|
||||||
{% block title %}{{ title }} - TryoutPro{% endblock %}
|
{% block title %}{{ title }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{{ title }}{% endblock %}
|
{% block page_title %}{{ title }}{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">{{ breadcrumb }}</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">{{ breadcrumb }}</span>{% endblock %}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Add Personal Note - TryoutPro{% endblock %}
|
{% block title %}Add Personal Note - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Add Personal Note{% endblock %}
|
{% block page_title %}Add Personal Note{% endblock %}
|
||||||
{% block breadcrumb %}
|
{% block breadcrumb %}
|
||||||
<span class="breadcrumb">
|
<span class="breadcrumb">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Calendar - TryoutPro{% endblock %}
|
{% block title %}Calendar - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Calendar{% endblock %}
|
{% block page_title %}Calendar{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Calendar</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Calendar</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Manage Availability - TryoutPro{% endblock %}
|
{% block title %}Manage Availability - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Manage Availability{% endblock %}
|
{% block page_title %}Manage Availability{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Coach Availability</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Coach Availability</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Contracts - TryoutPro{% endblock %}
|
{% block title %}Contracts - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Contracts{% endblock %}
|
{% block page_title %}Contracts{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.profile') }}">Profile</a> / Contracts</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.profile') }}">Profile</a> / Contracts</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Create User - TryoutPro{% endblock %}
|
{% block title %}Create User - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Create User{% endblock %}
|
{% block page_title %}Create User{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_users') }}">Users</a> / Create</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_users') }}">Users</a> / Create</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Dashboard - TryoutPro{% endblock %}
|
{% block title %}Dashboard - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Dashboard{% endblock %}
|
{% block page_title %}Dashboard{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Dashboard</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Dashboard</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Edit Profile - TryoutPro{% endblock %}
|
{% block title %}Edit Profile - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Edit Profile{% endblock %}
|
{% block page_title %}Edit Profile{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.profile') }}">Profile</a> / Edit</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.profile') }}">Profile</a> / Edit</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Edit {{ user.username }} - TryoutPro{% endblock %}
|
{% block title %}Edit {{ user.username }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Edit User{% endblock %}
|
{% block page_title %}Edit User{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_users') }}">Users</a> / Edit</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_users') }}">Users</a> / Edit</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Evaluate {{ player.username }} - TryoutPro{% endblock %}
|
{% block title %}Evaluate {{ player.username }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Evaluate {{ player.username }}{% endblock %}
|
{% block page_title %}Evaluate {{ player.username }}{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.view_tryout', tryout_id=tryout.id) }}">{{ tryout.title }}</a> / Evaluate</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.view_tryout', tryout_id=tryout.id) }}">{{ tryout.title }}</a> / Evaluate</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Evaluations - TryoutPro{% endblock %}
|
{% block title %}Evaluations - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Evaluations{% endblock %}
|
{% block page_title %}Evaluations{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Evaluations</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Evaluations</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Login - TryoutPro{% endblock %}
|
{% block title %}Login - UdeS team manager{% endblock %}
|
||||||
{% block auth_content %}
|
{% block auth_content %}
|
||||||
<form method="POST" action="{{ url_for('auth.login') }}" class="auth-form">
|
<form method="POST" action="{{ url_for('auth.login') }}" class="auth-form">
|
||||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}{% if match %}Edit Match{% else %}Schedule Match{% endif %} - {{ tryout.title }} - TryoutPro{% endblock %}
|
{% block title %}{% if match %}Edit Match{% else %}Schedule Match{% endif %} - {{ tryout.title }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{% if match %}Edit Match{% else %}Schedule Match{% endif %}{% endblock %}
|
{% block page_title %}{% if match %}Edit Match{% else %}Schedule Match{% endif %}{% endblock %}
|
||||||
{% block breadcrumb %}
|
{% block breadcrumb %}
|
||||||
<span class="breadcrumb">
|
<span class="breadcrumb">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}My Team(s) - TryoutPro{% endblock %}
|
{% block title %}My Team(s) - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}My Team(s){% endblock %}
|
{% block page_title %}My Team(s){% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / My Team(s)</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / My Team(s)</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Notes - TryoutPro{% endblock %}
|
{% block title %}Notes - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Notes{% endblock %}
|
{% block page_title %}Notes{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Notes</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Notes</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}One on One - TryoutPro{% endblock %}
|
{% block title %}One on One - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}One on One{% endblock %}
|
{% block page_title %}One on One{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / One on One</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / One on One</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Personal Notes - TryoutPro{% endblock %}
|
{% block title %}Personal Notes - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Personal Notes{% endblock %}
|
{% block page_title %}Personal Notes{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Personal Notes</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Personal Notes</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}My Notes - TryoutPro{% endblock %}
|
{% block title %}My Notes - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}My Notes{% endblock %}
|
{% block page_title %}My Notes{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / One on One / My Notes</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / One on One / My Notes</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Players to Evaluate - TryoutPro{% endblock %}
|
{% block title %}Players to Evaluate - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Players to Evaluate{% endblock %}
|
{% block page_title %}Players to Evaluate{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.view_tryout', tryout_id=tryout.id) }}">{{ tryout.title }}</a> / Evaluate</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.view_tryout', tryout_id=tryout.id) }}">{{ tryout.title }}</a> / Evaluate</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}My Profile - TryoutPro{% endblock %}
|
{% block title %}My Profile - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}My Profile{% endblock %}
|
{% block page_title %}My Profile{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Profile</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Profile</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Register - TryoutPro{% endblock %}
|
{% block title %}Register - UdeS team manager{% endblock %}
|
||||||
{% block auth_content %}
|
{% block auth_content %}
|
||||||
<form method="POST" action="{{ url_for('auth.register') }}" class="auth-form">
|
<form method="POST" action="{{ url_for('auth.register') }}" class="auth-form">
|
||||||
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}{% if match %}Edit{% else %}Schedule{% endif %} Team Match - TryoutPro{% endblock %}
|
{% block title %}{% if match %}Edit{% else %}Schedule{% endif %} Team Match - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{% if match %}Edit{% else %}Schedule{% endif %} Team Match{% endblock %}
|
{% block page_title %}{% if match %}Edit{% else %}Schedule{% endif %} Team Match{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('team_matches.list_matches') }}">Team Matches</a> / {% if match %}Edit{% else %}New{% endif %}</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('team_matches.list_matches') }}">Team Matches</a> / {% if match %}Edit{% else %}New{% endif %}</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Team Matches - TryoutPro{% endblock %}
|
{% block title %}Team Matches - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Team Matches{% endblock %}
|
{% block page_title %}Team Matches{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Team Matches</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Team Matches</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Team Notes - TryoutPro{% endblock %}
|
{% block title %}Team Notes - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Team Notes{% endblock %}
|
{% block page_title %}Team Notes{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Team Notes</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Team Notes</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Teams - TryoutPro{% endblock %}
|
{% block title %}Teams - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Teams{% endblock %}
|
{% block page_title %}Teams{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Teams</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Teams</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %} - TryoutPro{% endblock %}
|
{% block title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %}{% endblock %}
|
{% block page_title %}{% if tryout %}Edit Tryout{% else %}Create Tryout{% endif %}{% endblock %}
|
||||||
{% block breadcrumb %}
|
{% block breadcrumb %}
|
||||||
<span class="breadcrumb">
|
<span class="breadcrumb">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Tryouts - TryoutPro{% endblock %}
|
{% block title %}Tryouts - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Tryouts{% endblock %}
|
{% block page_title %}Tryouts{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Tryouts</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Tryouts</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Upload Contract - TryoutPro{% endblock %}
|
{% block title %}Upload Contract - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Upload Contract{% endblock %}
|
{% block page_title %}Upload Contract{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_contracts') }}">Contracts</a> / Upload</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('users.list_contracts') }}">Contracts</a> / Upload</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}Manage Users - TryoutPro{% endblock %}
|
{% block title %}Manage Users - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}Manage Users{% endblock %}
|
{% block page_title %}Manage Users{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / Users</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / Users</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}{{ tryout.title }} - TryoutPro{% endblock %}
|
{% block title %}{{ tryout.title }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{{ tryout.title }}{% endblock %}
|
{% block page_title %}{{ tryout.title }}{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.list_tryouts') }}">Tryouts</a> / {{ tryout.title }}</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="{{ url_for('tryouts.list_tryouts') }}">Tryouts</a> / {{ tryout.title }}</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{% extends "layouts/base.html" %}
|
{% extends "layouts/base.html" %}
|
||||||
{% block title %}{{ profile_user.username }} - TryoutPro{% endblock %}
|
{% block title %}{{ profile_user.username }} - UdeS team manager{% endblock %}
|
||||||
{% block page_title %}{{ profile_user.username }}{% endblock %}
|
{% block page_title %}{{ profile_user.username }}{% endblock %}
|
||||||
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="#" onclick="history.back()">Back</a> / {{ profile_user.username }}</span>{% endblock %}
|
{% block breadcrumb %}<span class="breadcrumb">Home / <a href="#" onclick="history.back()">Back</a> / {{ profile_user.username }}</span>{% endblock %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user