braziw-plugin-dbedit
Version:
Braziw js Mongo DB object editor / scaffolding.
17 lines (14 loc) • 326 B
HTML
{% extends _cms.conf.adminTemplate %}
{% block content %}
{{super()}}
<table class="table">
<thead>
<tr><th>Collection</th></tr>
</thead>
<tbody>
{%for modelInfo in modelInfos%}
<tr><td><a href="/admin/dbedit/list?model={{modelInfo.name}}">{{modelInfo.displayName}}</a></td></tr>
{%endfor%}
</tbody>
</table>
{% endblock %}