aurweb/templates
Kevin Morris 5e95cfbc8a
fix(FastAPI): get_pkgbase -> get_pkg_or_base
`get_pkgbase` has been replaced with `get_pkg_or_base`, which is
quite similar, but it does take a new `cls` keyword argument which
is to be the model class which we search for via its `Name` column.

Additionally, this change fixes a bug in the `/packages/{name}` route
by supplying the Package object in question to the context and modifying
the template to use it instead of a hacky through-base workaround.

Examples:

    pkgbase = get_pkg_or_base("some_pkgbase_name", PackageBase)
    pkg = get_pkg_or_base("some_package_name", Package)

Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-10-02 16:59:09 -07:00
..
account add /accounts/ (get, post) routes 2021-07-01 11:08:56 -07:00
errors Adding route tests 2021-06-05 19:52:56 -07:00
packages fix(FastAPI): get_pkgbase -> get_pkg_or_base 2021-10-02 16:59:09 -07:00
partials feat(FastAPI): add /packages (get) search 2021-09-19 12:44:19 -07:00
pkgbase feat(FastAPI): add /pkgbase/{name}/voters (get) 2021-10-02 12:28:32 -07:00
tos [FastAPI] add /tos routes (get, post) 2021-06-24 19:12:49 -07:00
tu /tu/{proposal_id}: Do not show voters if there are none 2021-06-26 04:43:00 -07:00
addvote.html add /addvote/ (get, post) routes 2021-07-01 11:08:44 -07:00
dashboard.html fix(FastAPI): voted/notified query efficiency 2021-09-19 00:34:08 -07:00
home.html [FastAPI] Modularize homepage and add side panel 2021-08-17 19:58:32 -07:00
index.html routers.html: add authenticated dashboard to homepage 2021-08-17 21:59:13 -07:00
login.html implement login + logout routes and templates 2021-06-05 20:11:17 -07:00
packages.html feat(FastAPI): add /packages (get) search 2021-09-19 12:44:19 -07:00
passreset.html add passreset routes 2021-06-05 20:11:17 -07:00
pkgbase.html add /pkgbase/{name} route 2021-07-27 20:48:40 -07:00
register.html add user registration routes 2021-06-05 20:11:17 -07:00