parent
ed65215723
commit
1f4af57b6e
@ -1,4 +1,4 @@ |
||||
/target |
||||
**/*.rs.bk |
||||
.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: |
||||
fields: |
||||
category: |
||||
species: |
||||
type: "free_enum" |
||||
code: |
||||
breed: |
||||
type: "free_enum" |
||||
value: |
||||
color: |
||||
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: |
||||
alive: |
||||
type: "bool" |
||||
fixed_tags: |
||||
type: "tags" |
||||
options: |
||||
- aaa |
||||
- bbb |
||||
- ccc |
||||
- ddd |
||||
- eee |
||||
default: true |
||||
|
@ -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