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
| /** | |
| * Add a "Author" column to theses CPT | |
| */ | |
| function add_theseauthor_columns($columns) { | |
| $columns['theseAuthor'] = 'Author'; | |
| return $columns; | |
| } | |
| add_filter('manage_theses_posts_columns' , 'add_theseauthor_columns'); | |
| /** |
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
| <button class="btn btn-primary pull-right"> | |
| <span>22,00€</span> | |
| <select id="reservation_nb_places" name="reservation[nb_places]" ng-model="vm.reservation.nb_places" ng-change="vm.updateTotal()" ng-options="i for i in vm.places_available" ng-disabled="!vm.canModifyReservation" class="ng-valid ng-dirty ng-valid-parse ng-touched"><option value="0" selected="selected" label="1">1</option><option value="1" label="2">2</option><option value="2" label="3">3</option><option value="3" label="4">4</option><option value="4" label="5">5</option><option value="5" label="6">6</option><option value="6" label="7">7</option><option value="7" label="8">8</option><option value="8" label="9">9</option><option value="9" label="10">10</option><option value="10" label="11">11</option><option value="11" label="12">12</option><option value="12" label="13">13</option><option value="13" label="14">14</option><option value="14" label="15">15</option><option value="15" label="16">16</option><option value="16" label="17">17</option>< |