home.html 4.13 KB
Newer Older
1 2
<div id="home">
  <div class="page_title txtcenter">
Félicie committed
3
    <h1>Espace Membre</h1>
4 5
  </div>
  <div class="tiles_container">
6
    <div class="tile high_tile" id="home_tile_my_info">
7
      <div class="tile_title">
8
        <i class="fas fa-user tile_icon"></i>
9
        <span class="member_info member_name"></span>
10 11
      </div>
      <div class="tile_content">
12 13
        {# <p><span class="member_info member_name"></span></p> #}
        <p class="member_status_text_container">Mon statut : <span class="member_info member_status"></span></p>
Damien Moulard committed
14 15
        <div class="delay_date_stop_container">
          ( jusqu'au <span class="delay_date_stop"></span> )
16
        </div>
Damien Moulard committed
17 18
        <div id="member_status_action">
          <a href="#" target="_blank" class="btn--warning unsuscribed_form_link">
19 20
            J'accède au formulaire
          </a>
Damien Moulard committed
21
          <button type="button" class="btn--danger choose_makeups">
22 23 24
            Je sélectionne mes rattrapages
          </button>
        </div>
Damien Moulard committed
25
        <div class="member_shift_name_area">
26
          <span>Mon créneau : </span>
Damien Moulard committed
27
          <span class="member_shift_name member_info"></span>
28
        </div>
Damien Moulard committed
29
        <div class="member_coop_number_area">
30
          <span>Mon numéro de coop : </span>
Damien Moulard committed
31
          <span class="member_coop_number member_info"></span>
32
        </div>
33 34 35 36
        <div class="member_associated_partner_area">
          <span>Je suis en binôme avec : </span>
          <span class="member_associated_partner member_info"></span>
        </div>
37 38 39 40 41
        <div id="see_more_info">
          <button type="button", class="btn btn--primary home_link_button" id="see_more_info_link">
            Accéder à mes infos et comprendre mon statut
          </button>
        </div>
Damien Moulard committed
42
      </div>
43
    </div>
44
    <div class="tile high_tile" id="home_tile_my_services">
45
      <div class="tile_title">
46
        <i class="fas fa-clipboard tile_icon"></i>
47 48 49 50 51 52 53
        Mes Services
      </div>
      <div class="tile_content">
        <h3>Services à venir</h3>
        <div id="home_incoming_services">
          <i class="fas fa-spinner fa-spin fa-lg"></i>
        </div>
Damien Moulard committed
54 55 56 57 58
        <div id="go_to_shift_history_area">
          <button type="button", class="btn btn--primary" id="home_go_to_shift_history">
            Accéder à mon historique
          </button>
        </div>
59 60
      </div>
    </div>
61
    <div class="tile small_tile" id="home_tile_services_exchange">
62
      <div class="tile_title">
63
        <i class="fas fa-exchange-alt tile_icon"></i>
64 65 66
        Échange de services
      </div>
      <div class="tile_content">
Etienne Freiss committed
67
        <div>
68
          Un empêchement ? J'anticipe et déplace mes services jusqu'à 24h avant leur début !
Etienne Freiss committed
69
        </div>
70 71
        <div class="home_link_button_area">
          <button type="button" class="btn--primary home_link_button" id="go_to_shifts_calendar">
Damien Moulard committed
72 73 74
              Accéder au calendrier d'échange de services
          </button>
        </div>
75 76
      </div>
    </div>
77
    <div class="tile small_tile" id="home_tile_help">
78
      <div class="tile_title">
79
        <i class="fas fa-question-circle tile_icon"></i>
80 81 82
        J'ai une demande
      </div>
      <div class="tile_content">
83 84 85
        <div class="home_link_button_area">
          <a
            href="javascript:void(0);"
Félicie committed
86
            class="btn--primary home_link_button"
87 88 89 90 91
            id="go_to_forms"
          >
              Accéder aux formulaires
          </a>
        </div>
92 93
      </div>
    </div>
94
    <div class="tile small_tile" id="home_tile_shop_info">
95 96 97 98
      <div class="tile_title">
        <i class="fas fa-newspaper tile_icon"></i>
        Informations magasins
      </div>
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
      <div id="shop_info_content">
        <div class="shop_info_item shop_opening_hours">
          <div class="shop_info_item_content">
            <div class="opening_hours_title">
              Horaires du magasin :
            </div>
            <div class="opening_hours_content">
              {{shop_opening_hours|safe}}
            </div>
          </div>
        </div>
        <div class="shop_info_item shop_message">
          <div class="shop_info_item_content shop_message_content">
            {{msg_accueil|safe}}
          </div>
        </div>
115 116
      </div>
    </div>
117
  </div>
Félicie committed
118
</div>