This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '@TRMain/layout.html.twig' %} | |
{% block content %} | |
<section id="notification_ok"> | |
<div class="row"> | |
{% if eventsTrue is empty and eventsFalse is empty %} | |
<h1 class="title_section">Vous n'avez pas de cours planifié(s)</h1> | |
{% elseif eventsTrue is empty %} | |
<h1 class="title_section">Vous avez {{ eventsFalse|length }} cours en attente de validation</h1> | |
{% elseif eventsFalse is empty %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends '::base.html.twig' %} | |
{% block main_content %} | |
{{ include('includes/topbar.html.twig') }} | |
{{ include('includes/sidebar.html.twig') }} | |
<main class="admin-form deep-main"> | |
<h1>Ajout d'un organisme</h1> | |
{{ form_start(form) }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'base.html.twig' %} | |
{% block body_class %}<body id="accueil">{% endblock %} | |
{% block main_content %} | |
{{ include('includes/topbar.html.twig') }} | |
<ul id="marquee"> | |
{% for result in results %} | |
<li> | |
<span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
" set tabstop=4 | |
" " when indenting with '>', use 4 spaces width | |
" set shiftwidth=4 | |
" " On pressing tab, insert 4 spaces | |
" set expandtab | |
syntax on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Person | |
{ | |
private $name; | |
private $firstname; | |
private $address; | |
private $date_of_birth; | |
function __construct($name, $firstname, $address, $date_of_birth){ |