Code source wiki de Foire aux questions
Version 10.1 par Stéphane Dugravot le 27/10/2023 - 08:52
Afficher les derniers auteurs
author | version | line-number | content |
---|---|---|---|
1 | {{box cssClass="floatinginfobox" title="**Contents**"}} | ||
2 | {{toc/}} | ||
3 | {{/box}} | ||
4 | |||
5 | = Droits = | ||
6 | |||
7 | == Pourquoi je n'ai pas accès à une page ? == | ||
8 | |||
9 | Les accès aux pages sont conditionnés par les autorisations ... | ||
10 | |||
11 | = Tableaux = | ||
12 | |||
13 | == Comment personnaliser un tableau ? == | ||
14 | |||
15 | Pour personnaliser un tableau, il est essentiel d'effectuer les modifications en mode Wiki (et pas en mode par défaut //**WYSIWYG**//). | ||
16 | |||
17 | Avant cela : [[Activez le mode utilisateur avancé>>https://wiki.univ-lorraine.fr/bin/view/publique/dn/outils/wiki/Je%20vais%20plus%20loin/#HActiverlemodeUtilisateuravancE9]]. Le bouton //**Modifier **//dispose alors d'une option supplémentaire autorisant le mode //**Wiki**//. | ||
18 | |||
19 | Voici quelques exemples de code Wiki associés a leur rendu : | ||
20 | |||
21 | === Comment appliquer une couleur de fond sur une ligne ou sur des cellules ? === | ||
22 | |||
23 | {{section}} | ||
24 | {{column width="40%"}} | ||
25 | (% class="table-bordered" %) | ||
26 | (% style="background-color:#777777" %)|Disque|=Partitions|=Taille|=Type|=(% colspan="4" rowspan="1" %)Remarques | ||
27 | |64 Go|sda1|1G|ext4|(% colspan="4" rowspan="1" %)/boot | ||
28 | | |sda2|63 Go|lvm|(% style="background-color:#777777" %)((( | ||
29 | VG | ||
30 | )))|(% style="background-color:#777777" %)LV|(% style="background-color:#777777" %)Mount|(% style="background-color:#777777" %)Taille | ||
31 | | | | | |vg0|racine|/|8G | ||
32 | | | | | | |home|/home|4G | ||
33 | | | | | | |var|/var|4G | ||
34 | {{/column}} | ||
35 | |||
36 | {{column width="40%"}} | ||
37 | {{code language="none" width="60%"}} | ||
38 | (% class="table-bordered" %) | ||
39 | (% style="background-color:#777777" %)|Disque|=Partitions|=Taille|=Type|=(% colspan="4" rowspan="1" %)Remarques | ||
40 | |64 Go|sda1|1G|ext4|(% colspan="4" rowspan="1" %)/boot | ||
41 | | |sda2|63 Go|lvm|(% style="background-color:#777777" %)((( | ||
42 | VG | ||
43 | )))|(% style="background-color:#777777" %)LV|(% style="background-color:#777777" %)Mount|(% style="background-color:#777777" %)Taille | ||
44 | | | | | |vg0|racine|/|8G | ||
45 | | | | | | |home|/home|4G | ||
46 | | | | | | |var|/var|4G | ||
47 | {{/code}} | ||
48 | {{/column}} | ||
49 | {{/section}} |