2023-08-14 22:48:50 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% if collection %}
|
|
|
|
{{ _("Edit") }} - {{ collection.title }}
|
|
|
|
{% else %}
|
|
|
|
{{ _("New Collection") }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-08-16 01:52:10 +02:00
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field, render_field_prefix_button %}
|
2023-08-14 22:48:50 +02:00
|
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
|
|
|
{{ render_submit_field(form.submit, class_="btn btn-primary float-right") }}
|
|
|
|
<h1>{{ self.title() }}</h1>
|
|
|
|
|
|
|
|
{{ form.hidden_tag() }}
|
2023-08-16 01:52:10 +02:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
{{ render_field(form.title, class_="col-sm-6") }}
|
|
|
|
{% if form.name %}
|
|
|
|
{{ render_field_prefix_button(form.name, class_="col-sm-6", pattern="[a-z0-9_]+",
|
|
|
|
prefix="/collections/" + collection.author.username + "/",
|
|
|
|
hint=_("Users won't be redirected when going to the old URL")) }}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2023-08-14 22:48:50 +02:00
|
|
|
{{ render_field(form.short_description) }}
|
|
|
|
{{ render_checkbox_field(form.private, class_="my-3") }}
|
|
|
|
|
|
|
|
{% if collection and collection.items %}
|
|
|
|
<h2>{{ _("Packages") }}</h2>
|
|
|
|
<p class="text-muted">
|
|
|
|
{{ _("To add or remove a package, go to the package's page and click 'Add to collection'") }}
|
|
|
|
</p>
|
|
|
|
{% for item in collection.items %}
|
|
|
|
{% set package = item.package %}
|
|
|
|
<article class="card my-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5>
|
|
|
|
<a href="{{ package.get_url('packages.view') }}" target="_blank">
|
|
|
|
{{ _("%(title)s by %(author)s", title=package.title, author=package.author.display_name) }}
|
|
|
|
</a>
|
|
|
|
</h5>
|
2023-08-15 21:39:32 +02:00
|
|
|
<p class="text-muted">
|
|
|
|
{{ package.short_desc }}
|
|
|
|
</p>
|
|
|
|
{{ render_field(form.descriptions[loop.index - 1], hint=_("You can replace the description with your own")) }}
|
2023-08-14 22:48:50 +02:00
|
|
|
{{ form.package_ids[loop.index - 1]() }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="mt-5">
|
|
|
|
{{ render_submit_field(form.submit) }}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|