|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- <%namespace name="h" file="jm2l:templates/helpers.mako"/>
- <%namespace name="tables" file="jm2l:templates/Logistique/Tables.mako"/>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- <%def name="Main(Exchanges, miam_form)">
- <%
- DicExch = Exchanges.get_overview( request.user.uid )
- %>
- <div class="tabbable tabs-left" id="Intendance_tab">
-
- <ul class="nav nav-tabs navbar" style="margin-bottom:0;background-color: #f7f7f7;">
- <li class="active"> <a href="#ResumeInt" data-toggle="tab">Resumé</a> </li>
- <li> <a href="#Miam" data-toggle="tab"><span style="font-size:1.8em;">🍽</span> Miam</a> </li>
- <li> <a href="#Covoiturage" data-toggle="tab"><span style="font-size:1.8em;">🚘</span> Covoiturage</a> </li>
- <li> <a href="#Hebergement" data-toggle="tab"><span style="font-size:1.8em;">🏚</span> Hébergement</a> </li>
- <li> <a href="#Materiel" data-toggle="tab"><span style="font-size:1.8em;">🛒</span> Matériel</a> </li>
- </ul>
-
- <div class="tab-content">
- <div class="tab-pane fade active in" id="ResumeInt">${Route_wrapper(DicExch)}</div>
- <div class="tab-pane fade" id="Miam">${Miam_wrapper(miam_form)}</div>
- <div class="tab-pane fade" id="Covoiturage">${Exchange_wrapper('C', DicExch['C'])}</div>
- <div class="tab-pane fade" id="Hebergement">${Exchange_wrapper('H', DicExch['H'])}</div>
- <div class="tab-pane fade" id="Materiel">${Exchange_wrapper('M', DicExch['M'])}</div>
- </div>
-
- </div>
- </%def>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- <%def name="Exchange_wrapper(Type, DicExch)">
- ${tables.DoTable(Type, 'Ask', DicExch)}
- ${tables.DoTable(Type, 'Proposal', DicExch)}
- <fieldset>
- <legend>Tous les échanges</legend>
- ${Missing(Type, DicExch['Missing'])}
- </fieldset>
- </%def>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- <%def name="Miam_wrapper(miam_form)">
- <table>
- <tr>
- <td>
- <fieldset>
- <legend>Qu'est ce qu'on mange ?</legend>
- <form id="MiamForm" action="/MonMiam" method="POST">
-
- <%
- DicForm = {
- }
- %>
- ${h.DisplayForm(miam_form, DicForm)}
- <div class="span2 offset5">
- <input class="btn btn-primary" type="submit" value="Enregistrer !" />
- </div>
- </form>
- </fieldset>
- </td>
- <td>
-
- </td>
- <td>
- <p>
- Complétez dès à présent votre partie repas afin que l'on puisse faire les réservations nécessaires !
- </p>
-
- <u>Vendredi soir :</u>
- <p>
- Certains conférenciers viennent de très loin et seront présent dés le vendredi.<br />
- Nous vous proposons de nous retrouver à proximité, à la CASA.<br />
- <a href="http://groupelacasa.com/la-carte-et-les-menus-1-2-75"> La carte CASA </a>
- le vendredi soir autour d'un verre et d'un bon repas !
- </p>
- <u>Samedi Midi :</u>
- <p>
- À la pause du midi, nous vous proposons un repas avec le food-truck 'les frères toqués' qui sera présent sur le parking de PolyTech<br />
- </p>
- <u>Samedi Soir :</u>
- <p>
- Pour conclure la journée nous avons l'habitude de nous retrouver au repas de cloture.<br />
- Nous vous proposons de nous retrouver à Antibes au restaurant Les Tonnelles<br />
- <a href="https://fr-fr.facebook.com/lestonnellesantibes/?_fb_noscript=1"> Les Tonnelles </a>
- </p>
- </td>
- </tr>
- </table>
- </%def>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- <%def name="Missing(Type, Selection)">
- <%
- if Type=='H':
- CurTitle = u"d'hébergement"
- CurIcon = "icon-home"
- elif Type=='C':
- CurTitle = "de co-voiturage"
- CurIcon = "icon-road"
- elif Type=='M':
- CurTitle = u"de prêt de matériel"
- CurIcon = "icon-shopping-cart"
- %>
- <table class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th colspan="5">
- Les échanges ${CurTitle}
- % if 0:
- <span style="float:right;">
- <a data-original-title="Afficher les demandes" data-toggle="tooltip" id="${Type}_Demande">
- <label class="checkbox inline">
- <input type="checkbox" id="Demandes">
- <i class="icon-comment"></i>
- </input>
- </label>
- </a>
- <a data-original-title="Afficher les propositions" data-toggle="tooltip" id="${Type}_Props">
- <label class="checkbox inline">
- <input type="checkbox" value="#">
- <i class="${CurIcon}"></i>
- </input>
- </label>
- </a>
- <span>
- % endif
- </th>
- </tr>
-
- <tr>
- <th style="width:1em;"></th>
- <th>Détails</th>
- <th style="width:1em;"></th>
- <tr>
- </thead>
- <tbody id="Missing${Type}Table">
- % if len(Selection)==0:
- <tr>
- <td colspan="5" style="text-align:center;">
- <i>Il n'y a aucun échange ${CurTitle} proposé actuellement...</i>
- </td>
- </tr>
- % else:
- % for item in Selection:
- <%
- if (item.provider_id and item.asker_id):
- continue
- %>
- <tr style="cursor:pointer;">
- % if item.exch_state=='Ask':
- <td style="vertical-align: middle;"><i class="${CurIcon}"></i></td>
- % elif item.exch_state=='Proposal':
- <td style="vertical-align: middle;"><i class="icon-comment"></i></td>
- % endif
- <td>
- <p style="text-align:center">
- %if item.asker and item.exch_state=='Ask':
- <a href="/user/${item.asker.slug}"> ${item.asker.prenom} ${item.asker.nom} </a> demande
- %elif item.provider and item.exch_state=='Proposal':
- <a href="/user/${item.provider.slug}"> ${item.provider.prenom} ${item.provider.nom} </a> offre
- % endif
- % if item.exch_type=="C":
- un co-voiturage le ${item.start_time.strftime('%a %d %b vers %Hh%M')}
- de <a href="javascript:DoGetLieu('/${CurrentYear}/modal/Place/${item.Itin.start.place_id}')">${item.Itin.start.display_name}</a>
- à <a href="javascript:DoGetLieu('/${CurrentYear}/modal/Place/${item.Itin.arrival.place_id}')">${item.Itin.arrival.display_name}</a>
- % elif item.exch_type=="M":
- % if item.Category:
- <i>${item.Category.exch_subtype}</i>
- % endif
- % if item.description:
- ${item.description[:30]}
- % endif
- de ${item.start_time.strftime('%a %d %b %Hh%M')}
- à ${item.end_time.strftime('%a %d %b %Hh%M')}
- % else:
- % if item.Category:
- <i>${item.Category.exch_subtype}</i>
- % endif
- % if item.description:
- ${item.description[:30]}
- % endif
- ${item.start_time.strftime('%a %d %b')} soir
- % endif
- </p>
- </td>
- <td style="vertical-align: middle;">
- % if item.provider_id==request.user.uid or item.asker_id==request.user.uid:
- <a class="btn btn-mini btn-primary" style="float:right"
- href="javascript:DoGet('/${CurrentYear}/modal/Show${Type}/${item.exch_id}')">
- <i class="icon-search icon-white"></i>
- </a>
- % elif (item.provider_id and item.asker_id):
- <a class="btn btn-mini btn-primary" style="float:right"
- href="javascript:DoGet('/${CurrentYear}/modal/Show${Type}/${item.exch_id}')">
- <i class="icon-search icon-white"></i>
- </a> <br/> <br/>
- ## <a id="Ask${Type}-${item.exch_id}"
- ## class="btn btn-mini btn-info" style="float:right"
- ## data-original-title="En attente"
- ## data-toggle="popover" data-placement="left"
- ## data-content="Déjà en attente d'une réponse."
- ## href="#Missing${Type}Table">
- ## <i class="icon-random icon-white"></i>
- ## </a>
- ## <script>$("#Ask${Type}-${item.exch_id}").popover();</script>
- % else:
- <a class="btn btn-mini btn-primary" style="float:right"
- href="javascript:DoGet('/${CurrentYear}/modal/Show${Type}/${item.exch_id}')">
- <i class="icon-search icon-white"></i>
- </a> <br/> <br/>
- ## <a class="btn btn-mini btn-primary" style="float:right"
- ## href="javascript:DoGet('/${CurrentYear}/exchange/Ask${Type}/${item.exch_id}/deal')">
- ## <i class="icon-random icon-white"></i>
- ## </a>
- % endif
- </td>
- </tr>
- % endfor
- % endif
- </tbody>
- </table>
-
- <%
- context._kwargs['postpone_js'].append( "$('#%s_Props').tooltip();" % Type )
- context._kwargs['postpone_js'].append( "$('#%s_Demande').tooltip();" % Type )
- %>
- ## <script>
- ## $('#${Type}_Props').tooltip()
- ## $('#${Type}_Demande').tooltip()
- ## </script>
-
- </%def>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- <%def name="Route_wrapper(DicExch)">
- <%
- AskSelection = Exchanges.get_my_counters( int(request.user.uid) )
- AllSelection = Exchanges.get_counters()
- ListWrap = ["Co-voiturage",u"Hébergement","Matos"]
- %>
- <div class="accordion" id="AccordionCounter">
- <div class="accordion-group">
- <div class="accordion-heading">
- <a class="accordion-toggle" data-toggle="collapse" data-parent="#AccordionCounter" href="#collapseMe"> Mes compteurs </a>
- </div>
- <div id="collapseMe" class="accordion-body collapse in">
- <div class="accordion-inner">
-
- <table class="table table-striped table-bordered table-hover LogistiqueTable">
- <thead style="text-align:center">
- <tr>
- <th>Section</th>
- <th>Mes demandes</th>
- <th>Mes offres</th>
- <th>Accords</th>
- </tr>
- </thead>
- <tbody id="MyCounters">
- <tr>
- <td>Miam</td>
- <td>?</td>
- <td>-</td>
- <td>?</td>
- </tr>
- % for Wrap in ListWrap:
- <tr>
- <td>${Wrap | h}</td>
- <td>
- <span class="badge">
- ${len(DicExch[Wrap[0]]['Ask'])}
- </span>
- </td>
- <td>
- <span class="badge">
- ${len(DicExch[Wrap[0]]['Proposal'])}
- </span>
- </td>
- <td>
- <span class="badge">
- ${len(DicExch[Wrap[0]]['Agree'])}
- </span>
- </td>
- </tr>
- % endfor
- </tbody>
- </table>
-
- </div>
- </div>
- </div>
- <div class="accordion-group">
- <div class="accordion-heading">
- <a class="accordion-toggle" data-toggle="collapse" data-parent="#AccordionCounter" href="#collapseAll">Les compteurs de l´événement</a>
- </div>
- <div id="collapseAll" class="accordion-body collapse">
- <div class="accordion-inner">
-
- <table class="table table-striped table-bordered table-hover LogistiqueTable">
- <thead style="text-align:center">
- <tr>
- <th>Section</th>
- <th>Les demandes</th>
- <th>Les propositions</th>
- <th>Les Accords</th>
- </tr>
- </thead>
- <tbody id="AllCounters">
- <tr>
- <td>Miam</td>
- <td>?</td>
- <td>-</td>
- <td>?</td>
- </tr>
- % for Wrap in ListWrap:
- <tr>
- <td>${Wrap | h}</td>
- <td>
- <span class="badge">
- ${DicExch[Wrap[0]]['Counters']['AllAsk']}
- </span>
- </td>
- <td>
- <span class="badge">
- ${DicExch[Wrap[0]]['Counters']['AllProp']}
- </span>
- </td>
- <td>
- <span class="badge">
- ${DicExch[Wrap[0]]['Counters']['AllAgree']}
- </span>
- </td>
- </tr>
- % endfor
- </tbody>
- </table>
-
- </div>
- </div>
- </div>
- </div>
-
- <fieldset>
- <legend>Mon Badge</legend>
- <p>
- Rendez-vous à l'accueil pour retirer votre badge !
- <br>
- Pour que tout se passe pour le mieux dans l'organisation de l'événement, nous vous invitons à :
- <ul>
- <li>Renseigner et valider vos horaires d'arrivée / de départ dans la section "Mon Séjour".</li>
- <li>Procéder à la réservation de vos repas dans la section "Miam" !</li>
- <li>Préparer et réserver vos transports au plus vite dans la section "Mes Frais".</li>
- </ul>
- </p>
- <div class="center">
- <a href="/user/${request.user.slug}/badge"> Télécharger mon badge (PDF)</a>
- <br>
- </div>
- <br>
- <div align="center">
- <a href="/user/${request.user.slug}/badge">
- <img style="border:solid black 1px;" src="/user/${request.user.slug}/badge?png=true" alt="Badge de ${request.user.slug}" />
- </a>
- </div>
- </fieldset>
- </%def>
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- ## Handle the Javascript Refresh to live update Current Page
- ## -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
- % if reload:
- <%
- DicExch = Exchanges.get_overview( request.user.uid )
- context._kwargs['postpone_js'] = []
- %>
- ${Route_wrapper(DicExch)}
- ${Exchange_wrapper(Type, DicExch[Type])}
- %endif
|