Resolved conflicts by taking development (v2.6.0) version for all files. Removed statistics.twig (replaced by Statistics plugin).
39 lines
1.9 KiB
Twig
39 lines
1.9 KiB
Twig
{% extends "layouts/admin.twig" %}
|
|
|
|
{% block title %}{{ ta.new_plugin|default('Nieuwe plugin') }} - {{ ta.admin_title|default('CodePress Admin') }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="mb-4"><i class="bi bi-plug"></i> {{ ta.new_plugin_title|default('Nieuwe plugin aanmaken') }}</h2>
|
|
|
|
<form method="post" class="card shadow-sm">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<div class="card-body">
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">{{ ta.plugin_name|default('Plugin naam') }}</label>
|
|
<input type="text" class="form-control" id="name" name="name" required autofocus>
|
|
<small class="form-text text-muted">{{ ta.plugin_name_help|default('Alleen letters, cijfers, underscores en streepjes.') }}</small>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Plugin type</label>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="type" id="type-content" value="content" checked>
|
|
<label class="form-check-label" for="type-content">
|
|
<strong>Content plugin</strong> — Verschijnt in de sidebar op content pagina's
|
|
</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="type" id="type-system" value="system">
|
|
<label class="form-check-label" for="type-system">
|
|
<strong>Systeem plugin</strong> — Voegt functionaliteit toe aan het CMS (admin menu, API)
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer bg-white">
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="bi bi-check-lg"></i> {{ ta.create|default('Aanmaken') }}
|
|
</button>
|
|
<a href="/admin/plugins" class="btn btn-outline-secondary">{{ ta.cancel|default('Annuleren') }}</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |