Vulcan/client/views/admin/settings.html

20 lines
447 B
HTML
Raw Normal View History

2012-09-06 19:42:11 +09:00
<template name="settings">
2012-11-13 19:53:29 +01:00
{{#if isAdmin true}}
<div class="grid-small grid-block dialog settings">
{{#with setting}}
2012-11-13 19:53:29 +01:00
<h2>Settings</h2>
2012-11-13 19:53:29 +01:00
{{#if no_settings}}
<p>No settings yet.</p>
{{/if}}
2012-11-13 19:53:29 +01:00
{{#if currentUser.isAdmin}}
<form id="json-form"></form>
{{generate_settings_form setting}}
{{/if}}
2012-11-13 19:53:29 +01:00
{{/with}}
</div>
{{/if}}
2012-09-06 19:42:11 +09:00
</template>