parent
ed65215723
commit
1f4af57b6e
@ -1,4 +1,4 @@ |
|||||||
/target |
/target |
||||||
**/*.rs.bk |
**/*.rs.bk |
||||||
.idea/ |
.idea/ |
||||||
|
data/data.json |
||||||
|
@ -0,0 +1,38 @@ |
|||||||
|
model: |
||||||
|
fields: |
||||||
|
category: |
||||||
|
type: "free_enum" |
||||||
|
code: |
||||||
|
type: "free_enum" |
||||||
|
value: |
||||||
|
type: "string" |
||||||
|
package: |
||||||
|
type: "free_enum" |
||||||
|
mounting: |
||||||
|
type: "enum" |
||||||
|
options: |
||||||
|
- "SMD" |
||||||
|
- "Through-hole" |
||||||
|
- "Screw" |
||||||
|
quantity: |
||||||
|
type: "int" |
||||||
|
min: 0 |
||||||
|
location: |
||||||
|
type: "free_enum" |
||||||
|
sublocation: |
||||||
|
label: "Sub-location" |
||||||
|
type: "string" |
||||||
|
tags: |
||||||
|
type: "free_tags" |
||||||
|
note: |
||||||
|
type: "text" |
||||||
|
checkbox: |
||||||
|
type: "bool" |
||||||
|
fixed_tags: |
||||||
|
type: "tags" |
||||||
|
options: |
||||||
|
- aaa |
||||||
|
- bbb |
||||||
|
- ccc |
||||||
|
- ddd |
||||||
|
- eee |
@ -1,38 +1,11 @@ |
|||||||
model: |
model: |
||||||
fields: |
fields: |
||||||
category: |
species: |
||||||
type: "free_enum" |
type: "free_enum" |
||||||
code: |
breed: |
||||||
type: "free_enum" |
type: "free_enum" |
||||||
value: |
color: |
||||||
type: "string" |
type: "string" |
||||||
package: |
alive: |
||||||
type: "free_enum" |
|
||||||
mounting: |
|
||||||
type: "enum" |
|
||||||
options: |
|
||||||
- "SMD" |
|
||||||
- "Through-hole" |
|
||||||
- "Screw" |
|
||||||
quantity: |
|
||||||
type: "int" |
|
||||||
min: 0 |
|
||||||
location: |
|
||||||
type: "free_enum" |
|
||||||
sublocation: |
|
||||||
label: "Sub-location" |
|
||||||
type: "string" |
|
||||||
tags: |
|
||||||
type: "free_tags" |
|
||||||
note: |
|
||||||
type: "text" |
|
||||||
checkbox: |
|
||||||
type: "bool" |
type: "bool" |
||||||
fixed_tags: |
default: true |
||||||
type: "tags" |
|
||||||
options: |
|
||||||
- aaa |
|
||||||
- bbb |
|
||||||
- ccc |
|
||||||
- ddd |
|
||||||
- eee |
|
||||||
|
@ -0,0 +1,22 @@ |
|||||||
|
{% extends "_layout" %} |
||||||
|
{% import "_form_macros" as form %} |
||||||
|
|
||||||
|
{% block title -%} |
||||||
|
Edit |
||||||
|
{%- endblock %} |
||||||
|
|
||||||
|
{% block nav -%} |
||||||
|
<a href="/">Index</a> |
||||||
|
{%- endblock %} |
||||||
|
|
||||||
|
{% block content -%} |
||||||
|
<form action="/edit/{{id}}" method="POST" class="Form"> |
||||||
|
<div class="Row indented"> |
||||||
|
<h1>Edit Record</h1> |
||||||
|
</div> |
||||||
|
{% include "_fields" %} |
||||||
|
<div class="Row indented"> |
||||||
|
<button type="submit">Save</button> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
{%- endblock %} |
Loading…
Reference in new issue