initial commit
This commit is contained in:
commit
8837b1e04f
35 changed files with 1272 additions and 0 deletions
17
sourcing/templates/edit.html
Normal file
17
sourcing/templates/edit.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% from "form/controls.html" import render_field %}
|
||||
|
||||
{% set title="edit " + doc.title %}
|
||||
|
||||
{% set action=doc.edit_url %}
|
||||
{% set label="save" %}
|
||||
|
||||
{% set fields %}
|
||||
{#
|
||||
{{ render_field(form.filename) }}
|
||||
{{ render_field(form.db_price_per_character) }}
|
||||
{{ render_field(form.db_document_price) }}
|
||||
#}
|
||||
{{ render_field(form.text, rows=20) }}
|
||||
{% endset %}
|
||||
|
||||
{% include "form/simple.html" %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue