-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53c4d50
commit 3680bf5
Showing
3 changed files
with
80 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!-- templates/edit.html --> | ||
{% extends "layout.html" %} | ||
{% block title %}Edit Domains{% endblock %} | ||
{% block content %} | ||
<h2>Edit Domains</h2> | ||
<form id="search-form"> | ||
<input type="text" id="search-bar" placeholder="Enter the domain name"> | ||
<button type="submit">Search</button> | ||
</form> | ||
<form id="edit-form"> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Domain ID</th> | ||
<th>Domain</th> | ||
<th>Is Active</th> | ||
<th>Is Objective</th> | ||
</tr> | ||
</thead> | ||
<tbody id="domains-table"> | ||
<!-- The results will be inserted here --> | ||
</tbody> | ||
</table> | ||
<button type="submit">Save</button> | ||
</form> | ||
{% endblock %} |