* Move core implementations to a standalone crate * Set up integration test skeleton in `core` * Demonstrate mock testing with query * Move Rocket api code to a standalone crate * Add mock execution * Add MyDataMyConsent in COMMUNITY.md (#889) * Add MyDataMyConsent in COMMUNITY.md * Update MyDataMyConsent description in COMMUNITY.md * Update COMMUNITY.md Chronological order * [cli] bump sea-schema to 0.9.3 (SeaQL/sea-orm#876) * Update CHNAGELOG PR links * 0.9.1 CHANGELOG * Auto discover and run all issues & examples CI (#903) * Auto discover and run all [issues] CI * Auto discover and run all examples CI * Fixup * Testing * Test [issues] * Compile prepare_mock_db() conditionally based on "mock" feature * Update workflow job to run mock test if `core` folder exists * Update Actix3 example * Fix merge conflict human error * Update usize used in paginate to u64 (PR#789) * Update sea-orm version in the Rocket example to 0.10.0 * Fix GitHub workflow to run mock test for core crates * Increase the robustness of core crate check by verifying that the `core` folder is a crate * Update Actix(4) example * Update Axum example * Update GraphQL example * Update Jsonrpsee example * Update Poem example * Update Tonic example * Cargo fmt * Update Salvo example * Update path of core/Cargo.toml in README.md * Add mock test instruction in README.md * Refactoring * Fix Rocket examples Co-authored-by: Amit Goyani <63532626+itsAmitGoyani@users.noreply.github.com> Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
{% extends "layout.html.tera" %} {% block content %}
|
|
<div class="row">
|
|
<h4>Edit Post</h4>
|
|
<div class="twelve columns">
|
|
<div class="ten columns">
|
|
<form action="/{{ post.id }}" method="post">
|
|
<div class="twelve columns">
|
|
<input
|
|
type="text"
|
|
placeholder="title"
|
|
name="title"
|
|
id="title"
|
|
value="{{ post.title }}"
|
|
autofocus
|
|
class="u-full-width"
|
|
/>
|
|
<input
|
|
type="text"
|
|
placeholder="content"
|
|
name="text"
|
|
id="text"
|
|
value="{{ post.text }}"
|
|
autofocus
|
|
class="u-full-width"
|
|
/>
|
|
</div>
|
|
<div class="twelve columns">
|
|
<div class="two columns">
|
|
<a href="/">
|
|
<input type="button" value="cancel" />
|
|
</a>
|
|
</div>
|
|
<div class="eight columns"></div>
|
|
<div class="two columns">
|
|
<input type="submit" value="save post" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="two columns">
|
|
<form action="/delete/{{ post.id }}" method="post">
|
|
<div class="two columns">
|
|
<input id="delete-button" type="submit" value="delete post" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|