diff --git a/app/inc/i18n.php b/app/inc/i18n.php
index 31c6f2d..5040073 100644
--- a/app/inc/i18n.php
+++ b/app/inc/i18n.php
@@ -50,7 +50,7 @@ if (strtoupper(substr(PHP_OS,0,3))=='WIN'){
putenv('LANGUAGE=');//sert à quoi?
setlocale(LC_ALL, $locale);
setlocale(LC_TIME, $locale);
-setlocale(LC_MESSAGES, $locale);
+//setlocale(LC_MESSAGES, $locale);
$domain = 'Studs';
bindtextdomain($domain, 'locale');
diff --git a/tpl/part/comments.tpl b/tpl/part/comments.tpl
new file mode 100644
index 0000000..4e9f09c
--- /dev/null
+++ b/tpl/part/comments.tpl
@@ -0,0 +1,36 @@
+
+
+{* Comment list *}
+
+{if $comments|count > 0}
+ {foreach $comments as $comment}
+
+ {/foreach}
+{/if}
+
+{* Add comment form *}
+{if $active}
+
+ {if $count_bests == 1}
+
{_("Best choice")}
+
+
{_("The best choice at this time is:")}
+ {elseif $count_bests > 1}
+
{_("Best choices")}
+
+
{_("The bests choices at this time are:")}
+ {/if}
+
+
+ {$i = 0}
+
+ {foreach $slots as $slot}
+ {foreach $slot->moments as $moment}
+ {if $best_moments[$i] == $max}
+ - {$slot->day|date_format:$date_format.txt_full} - {$moment}
+ {/if}
+ {$i = $i+1}
+ {/foreach}
+ {/foreach}
+
+
{_("with")} {$max} {if $max==1}{_('vote')}{else}{_('votes')}{/if}.
+
+
+{/if}
\ No newline at end of file
diff --git a/tpl/studs.tpl b/tpl/studs.tpl
index dc7f0dc..4cba8d6 100644
--- a/tpl/studs.tpl
+++ b/tpl/studs.tpl
@@ -2,44 +2,13 @@
{block name=main}
+ {if !empty($message)}
+
{$message->message}
+ {/if}
+
{* Global informations about the current poll *}
-{if !empty($message)}
-
{$message->message}
-{/if}
-
-
-
-
-
-
- {if !empty($poll->comment)}
-
- {/if}
-
-
+{include 'part/poll_info.tpl'}
{* Information about voting *}
@@ -70,235 +39,10 @@
{* Vote table *}
-
{_('Votes of the poll')}
-
-
-{* Best votes listing *}
-
-{$max = max($best_moments)}
-{if $max > 0}
-
- {if $count_bests == 1}
-
{_("Best choice")}
-
-
{_("The best choice at this time is:")}
- {elseif $count_bests > 1}
-
{_("Best choices")}
-
-
{_("The bests choices at this time are:")}
- {/if}
-
-
- {$i = 0}
-
- {foreach $slots as $slot}
- {foreach $slot->moments as $moment}
- {if $best_moments[$i] == $max}
- - {$slot->day|date_format:$date_format.txt_full} - {$moment}
- {/if}
- {$i = $i+1}
- {/foreach}
- {/foreach}
-
-
{_("with")} {$max} {if $max==1}{_('vote')}{else}{_('votes')}{/if}.
-
-
-{/if}
+{include 'part/vote_table.tpl' active=$poll->active}
{* Comments *}
-{if $poll->active}
-
+{include 'part/comments.tpl' active=$poll->active comments=$comments}
- {* Comment list *}
-
- {if $comments|count > 0}
- {foreach $comments as $comment}
-
- {/foreach}
- {/if}
-
- {* Add comment form *}
-
-
-{/if}
{/block}
\ No newline at end of file