mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-13 01:19:16 +01:00
32 lines
No EOL
1.4 KiB
HTML
32 lines
No EOL
1.4 KiB
HTML
{% extends "base_backend.html" %}
|
|
{% import "admin/editable_component.html" as edit %}
|
|
{% set uidfield = target.uid_fieldname()[0] %}
|
|
{% set objects = target.get(('%s = %s') % (uidfield, lodel_id)) %}
|
|
{% set obj = objects.pop() %}
|
|
{% block title %}Edit Object{% endblock %}
|
|
{% block body %}
|
|
<ol class="breadcrumb">
|
|
<li><a href="/{{ root_url }}/admin">Home</a></li>
|
|
<li><a href="/{{ root_url }}/admin/classes_admin">Edition</a></li>
|
|
<li><a href="/{{ root_url }}/admin/class_admin?classname={{ target.__name__ }}">{{ target.__name__ }}</a></li>
|
|
<li class="active">Edit</li>
|
|
</ol>
|
|
{% if msg is not none %}
|
|
{% block msg %} <p style="color:red; font-size:20pt; font-weight:bold">{{ msg }}</p> {% endblock %}
|
|
{% endif %}
|
|
<h1 class="h1_lodel">Lodel 2 - Edit {{ target.__name__ }} with uid {{ lodel_id }} </h1>
|
|
<form class="form-horizontal" action="" method ="post">
|
|
<input type="hidden" name="uid" value="{{ lodel_id}}" />
|
|
<input type="hidden" name="classname" value={{ target.__name__ }} />
|
|
{% for fieldname, fieldvalue in obj.fields().items() %}
|
|
<div class="form-group">
|
|
<div style="padding-bottom:15px;"> {{edit.input(fieldname, fieldvalue, obj.data(fieldname)) }} </div>
|
|
</div>
|
|
{% endfor %}
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
<a class="btn btn-default" href="classes_admin">Return</a>
|
|
</form>
|
|
<div>
|
|
|
|
</div>
|
|
{% endblock %} |