Merge pull request #8 from stevedylandev/chore/cellar-minor-style-updates 9b80b647
chore/cellar minor style updates
Steve Simkins · 2026-04-04 17:02 3 file(s) · +1 −8
apps/cellar/Cargo.toml +1 −1
1 1
[package]
2 2
name = "cellar"
3 -
version = "0.1.1"
3 +
version = "0.1.2"
4 4
edition = "2024"
5 5
description = "Personal wine tasting log"
6 6
license = "MIT"
apps/cellar/templates/admin.html +0 −1
3 3
{% block nav %}
4 4
  <nav class="links">
5 5
    <a href="/admin/new">new</a>
6 -
    <a href="/admin/logout">logout</a>
7 6
  </nav>
8 7
{% endblock %}
9 8
{% block content %}
apps/cellar/templates/wine_form.html +0 −6
1 1
{% extends "base.html" %}
2 2
{% block title %}{% if wine.is_some() %}Edit{% else %}New{% endif %} Wine - Cellar{% endblock %}
3 -
{% block nav %}
4 -
  <nav class="links">
5 -
    <a href="/admin">back</a>
6 -
    <a href="/admin/logout">logout</a>
7 -
  </nav>
8 -
{% endblock %}
9 3
{% block content %}
10 4
  {% if let Some(error) = error %}
11 5
    <p class="error">{{ error }}</p>