h tags and removing delete button

master
Matt Huntington 3 years ago
parent edf5f7e01b
commit e275f005f6

@ -6,21 +6,26 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
</head> </head>
<body> <body>
<h1>New Trello</h1>
{%if parent%} {%if parent%}
<section> <header>
<h1>{{parent[1]}}</h1> <h1>{{parent[1]}}</h1>
{{parent[2]}} {{parent[2]}}
</section> </header>
{%else%}
<header>
<h1>New Trello</h1>
</header>
{%endif%} {%endif%}
<section> <section>
{%if parent%}
<h2>Child Items</h2>
{%else%}
<h2>Items</h2>
{%endif%}
<ul> <ul>
{%for (id, title, description, created_at, updated_at, parent_id) in cursor%} {%for (id, title, description, created_at, updated_at, parent_id) in cursor%}
<li> <li>
<a href="/{{id}}">{{title}}</a> <a href="/{{id}}">{{title}}</a>
<form method="POST" action="/{{id}}?_method=DELETE">
<input type="submit" value="DELETE" />
</form>
</li> </li>
{%endfor%} {%endfor%}
</ul> </ul>

Loading…
Cancel
Save