-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit 0463c26.
- Loading branch information
Showing
9 changed files
with
85 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block content %} | ||
<h1>{% block title %} Bulk Asset Create {% endblock %}</h1> | ||
<p>Please select mapping of columns to asset info</p> | ||
<form method="POST"> | ||
<label>Asset ID:</label> | ||
<select class="form-control" name="asset_id" id="asset_id"> | ||
{% for header in headers_list %} | ||
<option value="{{ header }}">{{ header }}</option> | ||
{% endfor %} | ||
</select> | ||
<b>|</b> | ||
<label>Asset Type:</label> | ||
<select class="form-control" name="asset_type",id="assset_type"> | ||
{% for header in headers_list %} | ||
<option value="{{ header }}">{{ header }}</option> | ||
{% endfor %} | ||
</select> | ||
<b>|</b> | ||
<label>Asset Status:</label> | ||
<select class="form-control" name="asset_status" id="asset_status"> | ||
<option value="Available">Available</option> | ||
{% for header in headers_list %} | ||
<option value="{{ header }}">{{ header }}</option> | ||
{% endfor %} | ||
</select> | ||
<button type="submit">Import</button> | ||
</form> | ||
{{ data_var|safe }} | ||
|
||
{% endblock %} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters