Skip to content

Commit

Permalink
[#42] Update UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Orchaldir committed Sep 24, 2023
1 parent b724b7a commit 8477aa8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions resources/templates/appearance_edit.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,20 @@
<ul>
{% if appearance.body.clothing.type == "None" %}
{% elif appearance.body.clothing.type == "Simple" %}
<li>
<b>Footwear</b>
<ul>
<li>
<b>Color:</b> {{ macros::add_select(name="appearance.body.clothing.footwear.color", options=[ "Aqua","Black","Blue","Fuchsia","Gray","Green","Lime","Maroon","Navy","Olive","Orange","Purple","Red","SaddleBrown","Silver","Teal","White","Yellow" ], selected=appearance.body.clothing.footwear.color, update=true) }}
</li>
<li>
<b>Style:</b> {{ macros::add_select(name="appearance.body.clothing.footwear.style", options=[ "Boots","KneeHighBoots","Sandals","Shoes","Slippers" ], selected=appearance.body.clothing.footwear.style, update=true) }}
</li>
<li>
<b>Sole:</b> {{ macros::add_select(name="appearance.body.clothing.footwear.sole", options=[ "Aqua","Black","Blue","Fuchsia","Gray","Green","Lime","Maroon","Navy","Olive","Orange","Purple","Red","SaddleBrown","Silver","Teal","White","Yellow" ], selected=appearance.body.clothing.footwear.sole, update=true) }}
</li>
</ul>
</li>
<li>
<b>Pants</b>
<ul>
Expand Down
14 changes: 14 additions & 0 deletions resources/templates/character.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,20 @@
<ul>
{% if appearance.body.clothing.type == "None" %}
{% elif appearance.body.clothing.type == "Simple" %}
<li>
<b>Footwear</b>
<ul>
<li>
<b>Color:</b> {{ appearance.body.clothing.footwear.color }}
</li>
<li>
<b>Style:</b> {{ appearance.body.clothing.footwear.style }}
</li>
<li>
<b>Sole:</b> {{ appearance.body.clothing.footwear.sole }}
</li>
</ul>
</li>
<li>
<b>Pants</b>
<ul>
Expand Down

0 comments on commit 8477aa8

Please sign in to comment.