mirror of
https://github.com/godotengine/godot-asset-library.git
synced 2026-02-25 06:33:01 +03:00
29 lines
913 B
PHTML
29 lines
913 B
PHTML
<?php include("_header.phtml") ?>
|
|
<?php $_asset_values = $data ?>
|
|
<form class="form-horizontal" action="<?php echo raw($basepath) ?>/asset/<?php echo url($data['asset_id']) ?>" method="post">
|
|
<?php include("_csrf.phtml") ?>
|
|
<fieldset>
|
|
<!-- Form Name -->
|
|
<legend>
|
|
Edit Asset
|
|
<a class="btn btn-default btn-sm" href="<?php echo raw($basepath) ?>/asset/<?php echo url($data['asset_id']) ?>">
|
|
Back
|
|
</a>
|
|
</legend>
|
|
|
|
<?php include("_asset_fields.phtml") ?>
|
|
|
|
<div class="form-group">
|
|
<label class="col-md-4 control-label" for="submit"></label>
|
|
<div class="col-md-4">
|
|
<button id="submit" class="btn btn-primary">Submit edit</button>
|
|
<a class="btn btn-default" href="<?php echo raw($basepath) ?>/asset/<?php echo url($data['asset_id']) ?>">
|
|
Cancel
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
</fieldset>
|
|
</form>
|
|
<?php include("_footer.phtml") ?>
|