mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
19 lines
558 B
Plaintext
19 lines
558 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta name="layout" content="main"/>
|
|
<title><g:message code="plugin.translations.overview.edit.page.title" args="${[bundle.name]}"/></title>
|
|
<r:require modules="bootstrap"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<g:each in="${bundle.languages}" var="language">
|
|
<g:render template="templates/language" model="${[language: language]}" />
|
|
<br />
|
|
</g:each>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |