source: trunk/admin/themes/default/template/photos_add_ploader.tpl @ 5182

Last change on this file since 5182 was 5182, checked in by plg, 14 years ago

feature 1519: admin instructions are dispatched into several tabs. Only
applied to en_UK and fr_FR. The help content itself needs some updates
but it will be another set of commits, in this commit, I nearly only
modified the container.

The new "Add Photos" help page only introduces you to 3 main ways to add
photos: direct upload, pLoader and FTP. Each of them has a dedicated tab
on the Admin>Photos>Add screen.

No use of the big question mark icon linked to the Help pages in the
administration header, to avoid having this icon twice : in the header
+ in the content next to H2.

File size: 1.6 KB
Line 
1{literal}
2<script type="text/javascript">
3$().ready(function(){
4  $("#pLoaderPage  img").fadeTo("fast", 0.6);
5
6  $("#pLoaderPage  img").hover(
7    function(){
8      $(this).fadeTo("fast", 1.0); // Opacity on hover
9    },
10    function(){
11      $(this).fadeTo("fast", 0.6); // Opacity on mouseout
12    }
13  );
14});
15</script>
16
17<style>
18#pLoaderPage {
19  width:600px;
20  margin:0 auto;
21  font-size:1.1em;
22}
23
24#pLoaderPage P {
25  text-align:left;
26}
27
28#pLoaderPage .downloads {
29  margin:10px auto 0 auto;
30}
31
32#pLoaderPage .downloads A {
33  display:block;
34  width:150px;
35  text-align:center;
36  font-size:16px;
37  font-weight:bold;
38}
39
40#pLoaderPage .downloads A:hover {
41  border:none;
42}
43
44#pLoaderPage LI {
45  margin:20px;
46}
47</style>
48{/literal}
49
50<div class="titrePage">
51  <h2>{'Piwigo Uploader'|@translate}</h2>
52</div>
53
54<div id="pLoaderPage">
55<p>pLoader stands for <em>Piwigo Uploader</em>. From your computer, pLoader prepares your photos and transfer them to your Piwigo photo gallery.</p>
56
57<ol>
58  <li>
59    Download,
60
61<table class="downloads">
62  <tr>
63    <td>
64      <a href="{$URL_DOWNLOAD_WINDOWS}">
65        <img src="http://piwigo.org/screenshots/windows.png"/>
66        <br>Windows
67      </a>
68    <td>
69    <td>
70      <a href="{$URL_DOWNLOAD_MAC}">
71        <img src="http://piwigo.org/screenshots/mac.png" />
72        <br>Mac
73      </a>
74    <td>
75    <td>
76      <a href="{$URL_DOWNLOAD_LINUX}">
77        <img src="http://piwigo.org/screenshots/linux.png" />
78        <br>Linux
79      </a>
80    <td>
81  </tr>
82</table>
83
84  </li>
85  <li>Install on your computer,</li>
86  <li>Start pLoader and add your photos.</li>
87</ol>
88</div>
Note: See TracBrowser for help on using the repository browser.