Changeset View
Changeset View
Standalone View
Standalone View
swh/web/templates/add_forge_now/moderation.html
- This file was added.
{% extends "../layout.html" %} | |||||
{% comment %} | |||||
Copyright (C) 2022 The Software Heritage developers | |||||
See the AUTHORS file at the top-level directory of this distribution | |||||
License: GNU Affero General Public License version 3, or any later version | |||||
See top-level LICENSE file for more information | |||||
{% endcomment %} | |||||
{% load render_bundle from webpack_loader %} | |||||
{% load static %} | |||||
{% block header %} | |||||
{% render_bundle 'add_forge' %} | |||||
{% endblock %} | |||||
{% block title %}{{ heading }} – Software Heritage archive{% endblock %} | |||||
{% block navbar-content %} | |||||
<h4>Add forge now moderation</h4> | |||||
{% endblock %} | |||||
{% block content %} | |||||
<div class="col-md-8 offset-md-1"> | |||||
<div id="swh-add-forge-requests-list"> | |||||
<table id="swh-add-forge-now-moderation-list" class="table swh-table swh-table-striped"> | |||||
<thead> | |||||
<tr> | |||||
<th>ID</th> | |||||
<th>Submission date</th> | |||||
<th>Forge type</th> | |||||
<th>Forge URL</th> | |||||
<th>Status</th> | |||||
</tr> | |||||
</thead> | |||||
</table> | |||||
<div id="swh-add-forge-now-moderation-list-error"></div> | |||||
</div> | |||||
</div> | |||||
<script> | |||||
swh.add_forge.onModerationPageLoad(); | |||||
</script> | |||||
{% endblock %} |