Ajouter un lien menant vers la page suivante

3 participants

Voir le sujet précédent Voir le sujet suivant Aller en bas

Résolu Ajouter un lien menant vers la page suivante

Message par orpheus Hier à 17:03

Détails techniques


Version du forum : phpBB2
Poste occupé : Fondateur
Navigateur(s) concerné(s) : Google Chrome
Personnes concernées par le problème : Tous les utilisateurs
Lien du forum : https://empiredesouvenirs.forumactif.com

Description du problème

Bonjour à tous !

Voilà, je souhaiterai savoir comment faire pour rajouter un bouton en bas de chaque rubrique de mon forum afin de pouvoir naviguer sur la page suivante.

En effet actuellement sur mon forum pour pouvoir le faire, il faut systématiquement être en haut de la rubrique.

Ajouter un lien menant vers la page suivante PPowX5l

L'idée serait de préserver cette fonctionnalité en haut, tout en l'ajoutant en bas de chaque rubrique où il y a plusieurs pages de topics.

Si possible, il faudrait également rajouter un texte comme "page 1 sur xxx", je sais pas si c'est faisable ?

Je précise que mon forum est fortement modifié mais c'était une amie qui c'était chargée du codage, donc si besoin, n'hésitez pas à me demander. Smile

Merci.
orpheus

orpheus
*****

Messages : 788
Inscrit(e) le : 21/05/2009

https://empiredesouvenirs.forumactif.com
orpheus a été remercié(e) par l'auteur de ce sujet.
  • 0

Résolu Re: Ajouter un lien menant vers la page suivante

Message par MlleAlys Hier à 18:26

Bonjour,
C'est effectivement bizarre de ne pas retrouver la pagination en bas... peut être une correction à faire du côté de forumactif ?

Pour faire la modif vous même manuellement :
- Rendez-vous dans affichage > templates > général
- vérifiez que l'option "Forcer les templates par défaut" est sur NON
- éditez le template topics_grid_bod (affichage des sujets en mode grid)
- Juste avant la ligne <!-- END bottom--> (ligne 92 du template par défaut), copiez/collez le code suivant (qui correspond à l'affichage de la pagination en bas de page dans le template de l'affichage normal des sujets) :
Code:

   <tr>
      <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td>&nbsp;<span class="gensmall">{PAGINATION}</span></td>
               <td align="right"><a href="#top">{L_BACK_TO_TOP}</a>&nbsp;</td>
            </tr>
         </table>
      </td>
   </tr>

Si on part du template par défaut, cela donne donc ce template :
Code:
<!-- BEGIN topics_grid_box -->
<!-- BEGIN row -->
<!-- BEGIN header_table -->
<table class="forumline grid-forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
   <tr class="grid_forumheader">
      <th align="center" nowrap="nowrap">&nbsp;{topics_grid_box.row.L_TITLE}</th>
   </tr>
   <!-- BEGIN pagination -->
   <tr>
      <td class="row1" align="right"><span class="gensmall">{PAGINATION}</span></td>
   </tr>
   <!-- END pagination -->

   <tr><td class="row2">
         <div class="grid-section">

            <!-- END header_table -->

            <!-- BEGIN header_row -->
            <tr class="grid_forumheader">
               <td class="row3 grid_gensmall_title"><span class="gensmall">&nbsp;<strong>{topics_grid_box.row.L_TITLE}</strong></span></td>
            </tr>
            <!-- END header_row -->

            <!-- BEGIN topic -->
            <!-- BEGIN line_sticky -->
            <tr><td class="row3 sticky-separator"></td></tr>
               <tr><td class="row2">
               <div class="grid-section">
            <!-- END line_sticky -->
                     <!-- BEGIN table_sticky -->
                     <tr><th align="center" nowrap="nowrap">&nbsp;{topics_grid_box.row.topic.table_sticky.L_TITLE}</th></tr>
                     <tr><td class="row2">
                           <div class="grid-section">
                              <!-- END table_sticky -->
                              <div class="topic-card {topics_grid_box.row.ROW_ALT_CLASS}">
                                 <a href="{topics_grid_box.row.U_VIEW_TOPIC}">
                                    <div class="cover-image" style="--cover-image: url('{topics_grid_box.row.U_FB_IMAGE}');">
                                       <div class="posts-icon {topics_grid_box.row.FOLDER_CLASSNAME} {topics_grid_box.row.TOPIC_READ_STATUS}" style="background-image:url('{topics_grid_box.row.TOPIC_FOLDER_IMG}');" title="{topics_grid_box.row.L_TOPIC_FOLDER_ALT}"></div>
                                       <div class="stats">
                                        <span title="{L_VIEWS}" data-tooltip="{L_VIEWS}">
                                    <img src="{ILLIWEB_URL}icon-eye.svg"> {topics_grid_box.row.VIEWS}
                              </span>
                                          <span title="{L_REPLIES}" data-tooltip="{L_REPLIES}">
                                           <img src="{ILLIWEB_URL}icon-bubble.svg"> {topics_grid_box.row.REPLIES}
                                    </span>
                        </div>
                        <div class="topic-type {topics_grid_box.row.FOLDER_CLASSNAME}">{topics_grid_box.row.TOPIC_TYPE}</div>
                        <div class="author-avatar" title="{topics_grid_box.row.L_CREATED_ON_BY}"> {topics_grid_box.row.TOPIC_AUTHOR_AVATAR} </div>
                     </div>
                  </a>
                  <div class="card-content">
                     <div>
                        <span class="participate-check">{topics_grid_box.row.PARTICIPATE_POST_IMG}</span>
                        <div class="topic-title-container">
                           <!-- BEGIN single_selection -->
                           <input type="radio" name="{topics_grid_box.FIELDNAME}" value="{topics_grid_box.row.FID}" {topics_grid_box.row.L_SELECT} />
                           <!-- END single_selection -->
                           <h2 class="topic-title hierarchy">
                              <a href="{topics_grid_box.row.U_VIEW_TOPIC}" class="topictitle"> {topics_grid_box.row.TOPIC_TITLE} </a>
                           </h2>
                        </div>
                     </div>
                     <div class="description"> {topics_grid_box.row.FIRST_POST_TEXT_110} </div>
                     <div class="card-footer">
                        <div class="avatar-footer">
                           <!-- BEGIN avatar -->
                           <span class="lastpost-avatar">{topics_grid_box.row.topic.avatar.LAST_POST_AVATAR}</span>
                           <!-- END avatar --> {topics_grid_box.row.LAST_POST_AUTHOR} {topics_grid_box.row.NEWEST_POST_IMG}
                        </div>
                        <div class="time" title="{L_LASTPOST}">
                           <i class="ion-android-time"></i> {topics_grid_box.row.LAST_POST_TIME} {topics_grid_box.row.LAST_POST_IMG}
                        </div>
                     </div>
                  </div>
               </div>
               <!-- END topic -->
               <!-- BEGIN no_topics -->
               <tr>
                  <td>
                     <div class="posts-section posts-empty row1">
                        <strong>{topics_grid_box.row.L_NO_TOPICS}</strong>
                     </div>
                  </td>
               </tr>
               <!-- END no_topics -->



               <!-- BEGIN bottom -->
            </div></td></tr>
   <tr>
      <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td>&nbsp;<span class="gensmall">{PAGINATION}</span></td>
               <td align="right"><a href="#top">{L_BACK_TO_TOP}</a>&nbsp;</td>
            </tr>
         </table>
      </td>
   </tr>
      <!-- END bottom -->

      <!-- BEGIN footer_table -->
</table>
<!-- END footer_table -->


<!-- BEGIN spacer -->
<br />
<!-- END spacer -->

<!-- END row -->
<!-- END topics_grid_box -->

- Enregistrez le template
- publiez le template
- actualisez votre forum et vérifiez l'affichage.
MlleAlys

MlleAlys
Membre actif

Messages : 5948
Inscrit(e) le : 12/09/2012

MlleAlys a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par Stefano123 Hier à 19:22

orpheus a écrit:

Voilà, je souhaiterai savoir comment faire pour rajouter un bouton en bas de chaque rubrique de mon forum afin de pouvoir naviguer sur la page suivante.

En effet actuellement sur mon forum pour pouvoir le faire, il faut systématiquement être en haut de la rubrique.

Ajouter un lien menant vers la page suivante PPowX5l


Bonjour à vous, Wink

Effectivement, bonne remarque :

Cordialement,
Stefano123

Stefano123
***

Masculin
Messages : 161
Inscrit(e) le : 25/08/2024

https://rastaclub.forumactif.com/
Stefano123 a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par orpheus Hier à 19:29

Bonsoir MlleAlys,

Je vous remercie pour votre aide, après test, ça semble bien fonctionner mais :
- Par soucis de cohérence, serait-il possible de le positionner la pagination sur la droite ? Car actuellement, elle apparait en bas sur la gauche.
- Je constate également qu'elle a été positionné sur la bordure violette.

Ajouter un lien menant vers la page suivante Image35

Or, comme vous le voyez sur ma première capture, celle-ci se positionne entre la bordure et les sujets.
Pensez-vous que ce soit réalisable ?

Merci. Smile
orpheus

orpheus
*****

Messages : 788
Inscrit(e) le : 21/05/2009

https://empiredesouvenirs.forumactif.com
orpheus a été remercié(e) par l'auteur de ce sujet.
  • 0

Résolu Re: Ajouter un lien menant vers la page suivante

Message par MlleAlys Hier à 19:38

Oui c'est possible, c'est ainsi l'affichage par défaut mais on peut le modifier :
Retrouvez le passage ajouté précédemment dans le template :
Code:
  <tr>
      <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td>&nbsp;<span class="gensmall">{PAGINATION}</span></td>
               <td align="right"><a href="#top">{L_BACK_TO_TOP}</a>&nbsp;</td>
            </tr>
         </table>
      </td>
   </tr>
Remplacez par :
Code:
  <tr>
      <td class="row1" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td>&nbsp;<a href="#top">{L_BACK_TO_TOP}</a></td>
               <td align="right"><span class="gensmall">{PAGINATION}</span>&nbsp;</td>
            </tr>
         </table>
      </td>
   </tr>

Enregistrez, puis publiez le template.
MlleAlys

MlleAlys
Membre actif

Messages : 5948
Inscrit(e) le : 12/09/2012

MlleAlys a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par orpheus Hier à 20:07

Ah cette fois c'est parfait, encore merci ! Very Happy

Par contre, ça ne semble fonctionner que sur les rubriques avec un affichage en grid.
Si vous allez ici par exemple :
https://empiredesouvenirs.forumactif.com/f27-les-diffusions-vod

La pagination est toujours sur la droite et dans la bordure violette.
Et pour une raison qui m'échappe, elle n'apparaît plus en haut.

J'aurais peut-être dû vous le préciser lors de mon premier message, excusez-moi si c'est le cas.  Embarassed

Quant à rajouter un petit texte à côté de la pagination, afin que les membres sachent de quoi il s'agit, est-ce possible ? Smile
orpheus

orpheus
*****

Messages : 788
Inscrit(e) le : 21/05/2009

https://empiredesouvenirs.forumactif.com
orpheus a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par MlleAlys Hier à 20:24

Le template modifié est "topics_grid_box", donc bien celui de l'affichage en grid et c'est bien le seul affichage modifié par la manipulation que j'ai indiquée. Aviez-vous également modifié le template "topics_list_box" ?
MlleAlys

MlleAlys
Membre actif

Messages : 5948
Inscrit(e) le : 12/09/2012

MlleAlys a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par orpheus Hier à 21:46

MlleAlys a écrit:Le template modifié est "topics_grid_box", donc bien celui de l'affichage en grid et c'est bien le seul affichage modifié par la manipulation que j'ai indiquée. Aviez-vous également modifié le template "topics_list_box" ?

Ah d'accord je comprends mieux, ça me surprenait aussi qu'il faille modifier uniquement ce template. Laughing
Je suppose que c'est ma capture qui vous a induit en erreur et je m'en excuse mais comme je l'avais indiqué, c'est bien l'intégralité de mon forum qui est touché par ce problème. Embarassed

Pour répondre à votre question, la modification a bien été apportée dans "topics_grid_box". Oui, "topics_list_box" est bien modifié chez moi, je vous joint son contenu. Smile

Code:
<!-- BEGIN topics_list_box --><!-- BEGIN row --><!-- BEGIN header_table --><!-- BEGIN multi_selection -->
<script type="text/javascript">
function check_uncheck_main_{topics_list_box.row.header_table.BOX_ID}() {
   var all_checked = true;
   for (i = 0; (i < document.{topics_list_box.FORMNAME}.elements.length) && all_checked; i++) {
      if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') {
         all_checked = document.{topics_list_box.FORMNAME}.elements[i].checked;
      }
   }
   document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked = all_checked;
}
function check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}() {
   for (i = 0; i < document.{topics_list_box.FORMNAME}.length; i++) {
      if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') {
         document.{topics_list_box.FORMNAME}.elements[i].checked = document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked;
      }
   }
}
</script>
<!-- END multi_selection -->

<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
   <tr>
      <th colspan="{topics_list_box.row.header_table.COLSPAN}" align="center" nowrap="nowrap">&nbsp;{topics_list_box.row.L_TITLE}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="80">&nbsp;{topics_list_box.row.L_REPLIES}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="100">&nbsp;{topics_list_box.row.L_AUTHOR}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="50">&nbsp;{topics_list_box.row.L_VIEWS}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="150">&nbsp;{topics_list_box.row.L_LASTPOST}&nbsp;</th>
      <!-- BEGIN multi_selection -->
      <th align="center" nowrap="nowrap" width="20"><input onclick="check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}();" type="checkbox" name="all_mark_{topics_list_box.row.header_table.BOX_ID}" value="0" /></th>
   <!-- END multi_selection -->
   </tr>

   <!-- END header_table --><!-- BEGIN header_row -->
   <tr>
      <td class="row3" colspan="{topics_list_box.row.COLSPAN}"><span class="gensmall">&nbsp;<b>{topics_list_box.row.L_TITLE}</b></span></td>
   </tr>
<!-- END header_row -->

<!-- BEGIN topic -->
{topics_list_box.row.END_TABLE_STICKY}
   <tr>
      <!-- BEGIN single_selection -->
      <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20"><input type="radio" name="{topics_list_box.FIELDNAME}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></td>
      <!-- END single_selection -->
      <td class="{topics_list_box.row.ROW_FOLDER_CLASS}" align="center" valign="middle" width="20"><img title="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" src="{topics_list_box.row.TOPIC_FOLDER_IMG}" alt="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" /></td>
      <!-- BEGIN icon -->
      <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20">{topics_list_box.row.ICON}</td>
      <!-- END icon -->
      <td class="{topics_list_box.row.ROW_CLASS}" onmouseover='this.className="row2"' onmouseout='this.className="{topics_list_box.row.ROW_CLASS}"' width="100%">
         <div class="topictitle">
                        <center>{topics_list_box.row.TOPIC_TYPE} </center>
            <h2 class="topic-title">
                                  <center>{topics_list_box.row.NEWEST_POST_IMG}{topics_list_box.row.PARTICIPATE_POST_IMG}<a class="topictitle" href="{topics_list_box.row.U_VIEW_TOPIC}">{topics_list_box.row.TOPIC_TITLE}</center></a>
            </h2>
         </div>
         <!-- BEGIN switch_description -->
         <span class="genmed">
            <br />
                          <center>{topics_list_box.row.topic.switch_description.TOPIC_DESCRIPTION}</center>
         </span>
         <!-- END switch_description -->
                  <span class="gensmall"><center>{topics_list_box.row.TOPIC_ANNOUNCES_DATES}{topics_list_box.row.TOPIC_CALENDAR_DATES}</center></span>
                  <span class="gensmall"><center>{topics_list_box.row.GOTO_PAGE}</center><!-- BEGIN nav_tree --><center>{topics_list_box.row.TOPIC_NAV_TREE}</center> <!-- END nav_tree --></span>
      </td>

      <td class="row2" align="center" valign="middle"><span class="postdetails">{topics_list_box.row.REPLIES}</span></td>
      <td class="row3" align="center" valign="middle" style="background-image: url('https://i.servimg.com/u/f62/18/56/12/14/fond_r11.jpg');"><span class="name"><strong>{topics_list_box.row.TOPIC_AUTHOR}</strong></span></td>
      <td class="row2" align="center" valign="middle"><span class="postdetails">{topics_list_box.row.VIEWS}</span></td>
      <td class="row3Right" onmouseover='this.className="row1"' onmouseout='this.className="row3Right"' align="center" valign="middle" nowrap="nowrap"><span class="postdetails">{topics_list_box.row.LAST_POST_TIME}<br />{topics_list_box.row.LAST_POST_AUTHOR} {topics_list_box.row.LAST_POST_IMG}</span></td>
<!-- BEGIN multi_selection -->
      <td class="row2" align="center" valign="middle"><span class="postdetails"><input onclick="javascript:check_uncheck_main_{topics_list_box.row.BOX_ID}();" type="checkbox" name="{topics_list_box.FIELDNAME}[]{topics_list_box.row.BOX_ID}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></span></td>
   <!-- END multi_selection -->
   </tr>
   <!-- END topic --><!-- BEGIN no_topics -->
   <tr>
      <td class="row1" colspan="{topics_list_box.row.COLSPAN}" align="center" valign="middle" height="30"><span class="gen">{topics_list_box.row.L_NO_TOPICS}</span></td>
   </tr>
   <!-- END no_topics --><!-- BEGIN bottom -->
   <tr>
      <td class="catBottom" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
               <td>&nbsp;<span class="gensmall">{PAGINATION}</span></td>
               <td align="right"><a href="#top">{L_BACK_TO_TOP}</a>&nbsp;</td>
            </tr>
         </table>
      </td>
   </tr>
<!-- END bottom --><!-- BEGIN footer_table -->
</table><!-- END footer_table --><!-- BEGIN spacer --><br class="gensmall" /><!-- END spacer --><!-- END row --><!-- END topics_list_box -->

Encore navré pour la confusion.
orpheus

orpheus
*****

Messages : 788
Inscrit(e) le : 21/05/2009

https://empiredesouvenirs.forumactif.com
orpheus a été remercié(e) par l'auteur de ce sujet.
  • 0

Résolu Re: Ajouter un lien menant vers la page suivante

Message par MlleAlys Hier à 22:03

La partie qui affiche la pagination avait été retirée, je l'ai remise comme dans le template par défaut, essayez ainsi :
EDIT : AH j'ai oublié de changer la pagination du bas de page !
EDIT 2 : voici !
Code:
<!-- BEGIN topics_list_box --><!-- BEGIN row --><!-- BEGIN header_table --><!-- BEGIN multi_selection -->
<script type="text/javascript">
function check_uncheck_main_{topics_list_box.row.header_table.BOX_ID}() {
  var all_checked = true;
  for (i = 0; (i < document.{topics_list_box.FORMNAME}.elements.length) && all_checked; i++) {
      if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') {
        all_checked = document.{topics_list_box.FORMNAME}.elements[i].checked;
      }
  }
  document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked = all_checked;
}
function check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}() {
  for (i = 0; i < document.{topics_list_box.FORMNAME}.length; i++) {
      if (document.{topics_list_box.FORMNAME}.elements[i].name == '{topics_list_box.FIELDNAME}[]{topics_list_box.row.header_table.BOX_ID}') {
        document.{topics_list_box.FORMNAME}.elements[i].checked = document.{topics_list_box.FORMNAME}.all_mark_{topics_list_box.row.header_table.BOX_ID}.checked;
      }
  }
}
</script>
<!-- END multi_selection -->

<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
  <tr>
      <th colspan="{topics_list_box.row.header_table.COLSPAN}" align="center" nowrap="nowrap">&nbsp;{topics_list_box.row.L_TITLE}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="80">&nbsp;{topics_list_box.row.L_REPLIES}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="100">&nbsp;{topics_list_box.row.L_AUTHOR}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="50">&nbsp;{topics_list_box.row.L_VIEWS}&nbsp;</th>
      <th align="center" nowrap="nowrap" width="150">&nbsp;{topics_list_box.row.L_LASTPOST}&nbsp;</th>
      <!-- BEGIN multi_selection -->
      <th align="center" nowrap="nowrap" width="20"><input onclick="check_uncheck_all_{topics_list_box.row.header_table.BOX_ID}();" type="checkbox" name="all_mark_{topics_list_box.row.header_table.BOX_ID}" value="0" /></th>
  <!-- END multi_selection -->
  </tr>
  <!-- BEGIN pagination -->
  <tr>
    <td class="row1" colspan="7" align="right"><span class="gensmall">{PAGINATION}</span></td>
  </tr>
  <!-- END pagination -->
  <!-- END header_table --><!-- BEGIN header_row -->
  <tr>
      <td class="row3" colspan="{topics_list_box.row.COLSPAN}"><span class="gensmall">&nbsp;<b>{topics_list_box.row.L_TITLE}</b></span></td>
  </tr>
<!-- END header_row -->

<!-- BEGIN topic -->
{topics_list_box.row.END_TABLE_STICKY}
  <tr>
      <!-- BEGIN single_selection -->
      <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20"><input type="radio" name="{topics_list_box.FIELDNAME}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></td>
      <!-- END single_selection -->
      <td class="{topics_list_box.row.ROW_FOLDER_CLASS}" align="center" valign="middle" width="20"><img title="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" src="{topics_list_box.row.TOPIC_FOLDER_IMG}" alt="{topics_list_box.row.L_TOPIC_FOLDER_ALT}" /></td>
      <!-- BEGIN icon -->
      <td class="{topics_list_box.row.ROW_CLASS}" align="center" valign="middle" width="20">{topics_list_box.row.ICON}</td>
      <!-- END icon -->
      <td class="{topics_list_box.row.ROW_CLASS}" onmouseover='this.className="row2"' onmouseout='this.className="{topics_list_box.row.ROW_CLASS}"' width="100%">
        <div class="topictitle">
                        <center>{topics_list_box.row.TOPIC_TYPE} </center>
            <h2 class="topic-title">
                                  <center>{topics_list_box.row.NEWEST_POST_IMG}{topics_list_box.row.PARTICIPATE_POST_IMG}<a class="topictitle" href="{topics_list_box.row.U_VIEW_TOPIC}">{topics_list_box.row.TOPIC_TITLE}</center></a>
            </h2>
        </div>
        <!-- BEGIN switch_description -->
        <span class="genmed">
            <br />
                          <center>{topics_list_box.row.topic.switch_description.TOPIC_DESCRIPTION}</center>
        </span>
        <!-- END switch_description -->
                  <span class="gensmall"><center>{topics_list_box.row.TOPIC_ANNOUNCES_DATES}{topics_list_box.row.TOPIC_CALENDAR_DATES}</center></span>
                  <span class="gensmall"><center>{topics_list_box.row.GOTO_PAGE}</center><!-- BEGIN nav_tree --><center>{topics_list_box.row.TOPIC_NAV_TREE}</center> <!-- END nav_tree --></span>
      </td>

      <td class="row2" align="center" valign="middle"><span class="postdetails">{topics_list_box.row.REPLIES}</span></td>
      <td class="row3" align="center" valign="middle" style="background-image: url('https://i.servimg.com/u/f62/18/56/12/14/fond_r11.jpg');"><span class="name"><strong>{topics_list_box.row.TOPIC_AUTHOR}</strong></span></td>
      <td class="row2" align="center" valign="middle"><span class="postdetails">{topics_list_box.row.VIEWS}</span></td>
      <td class="row3Right" onmouseover='this.className="row1"' onmouseout='this.className="row3Right"' align="center" valign="middle" nowrap="nowrap"><span class="postdetails">{topics_list_box.row.LAST_POST_TIME}<br />{topics_list_box.row.LAST_POST_AUTHOR} {topics_list_box.row.LAST_POST_IMG}</span></td>
<!-- BEGIN multi_selection -->
      <td class="row2" align="center" valign="middle"><span class="postdetails"><input onclick="javascript:check_uncheck_main_{topics_list_box.row.BOX_ID}();" type="checkbox" name="{topics_list_box.FIELDNAME}[]{topics_list_box.row.BOX_ID}" value="{topics_list_box.row.FID}" {topics_list_box.row.L_SELECT} /></span></td>
  <!-- END multi_selection -->
  </tr>
  <!-- END topic --><!-- BEGIN no_topics -->
  <tr>
      <td class="row1" colspan="{topics_list_box.row.COLSPAN}" align="center" valign="middle" height="30"><span class="gen">{topics_list_box.row.L_NO_TOPICS}</span></td>
  </tr>
  <!-- END no_topics --><!-- BEGIN bottom -->
  <tr>
      <td class="row1" colspan="{topics_list_box.row.COLSPAN}" valign="middle">
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td>&nbsp;<a href="#top">{L_BACK_TO_TOP}</a></td>
              <td align="right"><span class="gensmall">{PAGINATION}</span>&nbsp;</td>
            </tr>
        </table>
      </td>
  </tr>
<!-- END bottom --><!-- BEGIN footer_table -->
</table><!-- END footer_table --><!-- BEGIN spacer --><br class="gensmall" /><!-- END spacer --><!-- END row --><!-- END topics_list_box -->
MlleAlys

MlleAlys
Membre actif

Messages : 5948
Inscrit(e) le : 12/09/2012

MlleAlys a été remercié(e) par l'auteur de ce sujet.

Résolu Re: Ajouter un lien menant vers la page suivante

Message par orpheus Hier à 22:12

Ah cette fois c'est parfait sur toutes les rubriques ! Very Happy
Merci encore pour tout ce que vous avez fait, je passe le sujet en résolu.

Bonne soirée. Smile
orpheus

orpheus
*****

Messages : 788
Inscrit(e) le : 21/05/2009

https://empiredesouvenirs.forumactif.com
orpheus a été remercié(e) par l'auteur de ce sujet.

Voir le sujet précédent Voir le sujet suivant Revenir en haut

- Sujets similaires

Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum