Files
Piwigo/plugins/add_index/admin/main_page.tpl
rub 618158aca4 Add comment tags in order to know tpl to migrate
# tag
for f in `find . -name \*.tpl`
do 
  echo $f
  mv $f $f.tmp
  echo '<!-- DEV TAG: not smarty migrated -->' > $f
  cat $f.tmp >> $f
  rm -f $f.tmp
done

#find file not migrated
for f in `find . -name \*.tpl`
do 
  grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f
done


git-svn-id: http://piwigo.org/svn/trunk@2222 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-02-27 23:08:44 +00:00

16 lines
339 B
Smarty

<!-- DEV TAG: not smarty migrated -->
<!-- $Id: notification_by_mail.tpl Ruben ARNAUD -->
<div class="titrePage">
<h2>{lang:Add_Index}</h2>
</div>
<!-- BEGIN add_index_results -->
<div>
<ul>
<!-- BEGIN result -->
<li>{add_index_results.result.RESULT}</li>
<!-- END result -->
</ul>
</div>
<!-- END add_index_results -->