Changeset 62006 in spip-zone
- Timestamp:
- Jun 1, 2012, 9:39:32 PM (9 years ago)
- Location:
- _plugins_/Association/Associaspip/exec
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/Association/Associaspip/exec/activites.php
r61705 r62006 134 134 echo "\n<table width='100%'>\n"; 135 135 //SOUS-PAGINATION 136 echo "<table class='asso_tablo_filtres'><tr>\n<td width='40%'><p class='pagination'>";136 echo "<table width='100%' class='asso_tablo_filtres'><tr>\n<td align='left'>"; 137 137 $nombre_selection = sql_countsel('spip_evenements', "DATE_FORMAT(date_debut, '%Y')=$annee"); 138 138 $pages = ceil($nombre_selection/$max_par_page); … … 149 149 } 150 150 } 151 echo '</ p></td></tr></table>';151 echo '</td></tr></table>'; 152 152 fin_page_association(); 153 153 } -
_plugins_/Association/Associaspip/exec/adherents.php
r61120 r62006 256 256 . "</tbody>\n</table>\n"; 257 257 //SOUS-PAGINATION 258 $res .= "<table class='asso_tablo_filtres'><tr>\n<td width='52%'><p class='pagination'>";258 $res .= "<table width='100%' class='asso_tablo_filtres'><tr>\n<td align='left'>"; 259 259 $nombre_selection = sql_countsel('spip_asso_membres', $critere); 260 260 $pages = intval($nombre_selection/$max_par_page)+1; … … 263 263 $position = $i*$max_par_page; 264 264 if ($position==$debut) { 265 $res .= '<strong>'.$position.'</strong>';265 $res .= '<strong>'.$position.'</strong>'; 266 266 } else { 267 267 $h = generer_url_ecrire('adherents', 'lettre='.$lettre.'&debut='.$position.'&statut_interne='.$statut_interne); … … 271 271 } 272 272 if (autoriser('editer_membres', 'association', 100)) { 273 $res .= "</ p></td><td width='48%' class='formulaire'><form>\n";273 $res .= "</td><td align='right' class='formulaire'><form>\n"; 274 274 if ($auteurs) { 275 275 $res .= '<select name="action_adherents"><option value="" selected="">'._T('asso:choisir_action').'</option><option value="desactive">' -
_plugins_/Association/Associaspip/exec/comptes.php
r61680 r62006 165 165 . $table 166 166 . "</tbody>\n</table>\n" 167 . "<table width='100%'><tr>\n<td >" . $nav . '</td><td style="text-align:right;"><input type="submit" value="'. _T('asso:bouton_valider') . '" class="fondo"/></td></tr></table>';167 . "<table width='100%'><tr>\n<td align='left'>" . $nav . '</td><td align="right"><input type="submit" value="'. _T('asso:bouton_valider') . ' /></td></tr></table>'; 168 168 echo generer_form_ecrire('action_comptes', $table); 169 169 } else {
Note: See TracChangeset
for help on using the changeset viewer.