Server IP : 127.0.0.2 / Your IP : 18.218.108.184 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/calendar/views/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <template id="assets_backend" name="calendar assets" inherit_id="web.assets_backend"> <xpath expr="." position="inside"> <link rel="stylesheet" href="/calendar/static/src/less/calendar.less"/> <script type="text/javascript" src="/calendar/static/src/js/base_calendar.js"></script> </xpath> </template> <!-- Template rendered in route auth=None, for anonymous user. This allow them to see meeting details --> <template id="invitation_page_anonymous" name="Calendar Invitation Page for anonymous users"> <t t-call="web.layout"> <t t-set="head"> <t t-call-assets="web.assets_common" t-js="false"/> <t t-call-assets="web.assets_frontend" t-js="false"/> </t> <div class="container"> <div class="o_logo"> <img class="img img-responsive center-block" src="/web/binary/company_logo"/> </div> <div class="panel panel-default"> <div class="panel-heading"> <h2>Calendar Invitation <small><t t-esc="event.name"/></small></h2> </div> <div class="panel-body"> <div class="clearfix mb16" t-if="attendee.state != 'needsAction'"> <span class="pull-right label label-info"> <t t-if="attendee.state == 'accepted'">Yes I'm going.</t> <t t-if="attendee.state == 'declined'">No I'm not going.</t> </span> </div> <div class="table-responsive"> <table class="o_event_table table table-striped"> <tr> <th>Invitation for</th> <td><t t-esc="attendee.common_name"/> (<t t-esc="attendee.email"/>)</td> </tr> <tr> <th>Date</th> <td><t t-esc="event.display_time"/></td> </tr> <tr> <th>Location</th> <td><t t-esc="event.location or '-'"/></td> </tr> <tr> <th>Attendees</th> <td> <ul> <li t-foreach="event.attendee_ids" t-as="attendee" t-attf-class="o_#{attendee.state}"> <t t-esc="attendee.common_name"/> </li> </ul> </td> </tr> </table> </div> </div> </div> </div> </t> </template> </odoo>