<% use obfui::cmn; my ($flist,$dirnm) = @_;  %>
<% if (!@$flist) { %>
<%= __('No projects were created - nothing to choose from. You have to either create new or import existing project.') %>
<% } else { %>
    <%= __('Choose one of the projects by clicking on its name:') %>
<ul>
<% foreach (@$flist) { 
    my ($id,$title) = @$_; %>
    <li><a class=noul href=../<%$ $id %>/>		<%= $title %>	</a>
<% } %>
</ul>
<p>&nbsp;<p>
<div class=some-hint>
Projects files are special files that <b>are stored in the 
directory</b> named <tt><%= $dirnm %></tt>. 
<p>
<b>To backup all your projects</b> (or move to other computer)
just archive all files in that folder.

<p>
<b>To remove a single project</b>, open it, go to <i>Settings&rArr;Options</i>
and click <i>Delete this project</i> there.
</div>


<% } %>

