Add set up releases wizard

This commit is contained in:
rubenwardy
2020-12-15 21:22:17 +00:00
parent 14a67b99ba
commit c8406b45d4
8 changed files with 139 additions and 59 deletions

View File

@@ -1,29 +1,41 @@
{% extends "base.html" %}
{% block title %}
Configure Update Detection | {{ package.title }}
{{ _("Configure Automatic Releases") }} - {{ package.title }}
{% endblock %}
{% block content %}
<h1>{{ _("Configure Update Detection") }}</h1>
<h1>{{ _("Configure Automatic Releases") }}</h1>
<p>
{{ _("When you push a change to your Git repository, ContentDB can create a new release automatically.") }}
</p>
<p>
{{ _("ContentDB will poll your Git repository at 2am UTC every day.") }}
{{ _("You should consider using webhooks or the API for faster rollouts.") }}
</p>
{% if package.checkPerm(current_user, "APPROVE_RELEASE") and package.getIsOnGitHub() %}
<p class="alert alert-info mb-4">
<a class="float-right btn btn-sm btn-info" href="{{ url_for('flatpage', path='help/release_webhooks') }}">{{ _("Learn more") }}</a>
<a class="float-right btn btn-sm btn-info mr-2" href="{{ url_for('github.setup_webhook', pid=package.id) }}">{{ _("Setup webhook") }}</a>
<i class="fas fa-info mr-2"></i>
{{ _("Create releases faster by using a webhook.") }}
</p>
{% endif %}
{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
<form method="POST" action="">
{{ form.hidden_tag() }}
<h3>Triggers</h3>
{{ render_field(form.trigger) }}
<h3 class="mt-5">Actions</h3>
{{ render_checkbox_field(form.make_release) }}
{{ render_field(form.trigger, class_="mt-5") }}
{{ render_field(form.action) }}
<p class="mt-5">
{{ render_submit_field(form.submit) }}
{{ render_submit_field(form.disable, class_="btn btn-secondary ml-2") }}
</p>
</form>
{% endblock %}