You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.0 KiB
74 lines
2.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Define relation • YOPA</title>
|
|
<script src="../static/bundle.js"></script>
|
|
<link rel="stylesheet" href="../static/style.css">
|
|
</head>
|
|
<body>
|
|
<header class="navbar mb-2 mt-2">
|
|
<section class="navbar-section">
|
|
<a href="/" class="navbar-brand text-bold mr-2">
|
|
Yopa
|
|
</a><a href="/" class="btn btn-link"><i class="icon icon-home"></i>Home</a></section>
|
|
<section class="navbar-section">
|
|
YOPA is the best
|
|
</section>
|
|
</header>
|
|
|
|
<div class="content">
|
|
|
|
<form action="/model/relation/create" method="POST">
|
|
<input type="hidden" name="object" value="0">
|
|
|
|
<div class="container">
|
|
<div class="cols">
|
|
<div class="col col-9">
|
|
<h1>Define new relation from "Animal"</h1>
|
|
</div>
|
|
<div class="col col-3 text-right">
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="icon icon-check"></i>Save
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-horizontal container">
|
|
<div class="form-group cols">
|
|
<div class="col-3 pl-2">
|
|
<label class="form-label" for="name">Name</label>
|
|
</div>
|
|
<div class="col-9 pr-2">
|
|
<input type="text" class="form-input input-inline" id="name" name="name" value="" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group cols">
|
|
<div class="col-3 pl-2">
|
|
<label class="form-label" for="optional">Optional</label>
|
|
</div>
|
|
<div class="col-9 pr-2">
|
|
<label class="form-switch input-inline">
|
|
<input type="checkbox" id="optional" value="true">
|
|
<i class="form-icon"></i>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group cols">
|
|
<div class="col-3 pl-2">
|
|
<label class="form-label" for="related">dsfsdf</label>
|
|
</div>
|
|
<div class="col-9 pr-2">
|
|
<select name="related" class="form-select input-inline" id="related" autocomplete="off">
|
|
<option value="0" selected>Animal</option>
|
|
<option value="1" >Food</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form></div>
|
|
</body>
|
|
</html>
|
|
|