UX improvements
All checks were successful
continuous-integration/drone/push Build is passing

* ignore English articles when sorting names
  * added a new sort_name field that gets automatically created
* automatically fill certain values in forms:
  * new game: name and sort name after typing
  * new edition: name and sort name when selecting game
  * new purchase: platform when selecting edition
This commit is contained in:
2023-11-09 14:49:00 +01:00
parent 866f2526e6
commit a879360ebd
12 changed files with 278 additions and 61 deletions

View File

@ -1,4 +1,5 @@
{% extends "base.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock title %}
@ -15,3 +16,10 @@
</table>
</form>
{% endblock content %}
{% block scripts %}
{% if script_name %}
<script type="module" src="{% static 'js/'|add:script_name %}"></script>
{% endif %}
{% endblock scripts %}