Files
Phraseanet/templates/web/thesaurus/export-topics.html.twig
2013-12-03 20:05:20 +01:00

44 lines
1.3 KiB
Twig

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="{{ app['locale'] }}">
<head>
<title>{{ 'thesaurus:: export en topics' | trans }}</title>
<link REL="stylesheet" TYPE="text/css" href="{{ path('minifier', { 'f' : 'skins/thesaurus/thesaurus.css' }) }}" />
<style>
.toscreen
{
background-color:#ffffff;
}
.tofiles
{
margin: 20px;
}
</style>
<script type="text/javascript">
function loaded()
{
self.focus();
}
</script>
</head>
<body id="idbody" onload="loaded();" class="dialog">
<div class="{{ ofm }}">
{% for lng, export in lngs %}
<pre style='font-size: 12px;'>
{{ export }}
</pre>
{% endfor %}
{% if ofm == 'tofiles' %}
<center>
<br/>
<br/>
<br/>
<input type="button" value="{{ 'boutton::fermer' | trans }}" onclick="self.close();" style="width:100px;">
</center>
{% endif %}
</div>
</body>
</html>