mirror of https://github.com/sipwise/repoapi.git
Change-Id: I7da3b00a8a5f7f69d12876de33406919df223e31changes/21/13921/3
parent
f56bd95932
commit
45f81959e2
@ -0,0 +1,24 @@
|
||||
# Copyright (C) 2017 The Sipwise Team - http://sipwise.com
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by the Free
|
||||
# Software Foundation, either version 3 of the License, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
# more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
rd_settings = settings.RELEASE_DASHBOARD_SETTINGS
|
||||
trunk_projects = sorted(set(rd_settings['projects']) -
|
||||
set(rd_settings['abandoned']) -
|
||||
set(rd_settings['build_deps']))
|
||||
trunk_build_deps = sorted(set(rd_settings['build_deps']) -
|
||||
set(rd_settings['abandoned']))
|
||||
docker_projects = rd_settings['docker_projects']
|
||||
@ -0,0 +1,28 @@
|
||||
# Copyright (C) 2016 The Sipwise Team - http://sipwise.com
|
||||
|
||||
# This program is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by the Free
|
||||
# Software Foundation, either version 3 of the License, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
# more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from django import forms
|
||||
from . import docker_projects
|
||||
|
||||
|
||||
class BuildDockerForm(forms.Form):
|
||||
common_select = forms.CharField(max_length=50)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(BuildDockerForm, self).__init__(*args, **kwargs)
|
||||
|
||||
for project in docker_projects:
|
||||
self.fields['version_%s' %
|
||||
project] = forms.CharField(max_length=15)
|
||||
@ -0,0 +1,13 @@
|
||||
{% extends "release_dashboard/base.html" %}
|
||||
{% load staticfiles %}
|
||||
{% block title %}Build docker images per project{% endblock %}
|
||||
{% block navlist %}
|
||||
<li><a href="{% url 'release_dashboard:index'%}">Release Dashboard</a></li>
|
||||
<li><a href="{% url 'release_dashboard:build_docker_images'%}">Build Docker Images</a></li>
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
{% include "release_dashboard/build_content.html" %}
|
||||
{% endblock %}
|
||||
{% block extrajs %}
|
||||
<script src="{% static "release_dashboard/js/build.js" %}"></script>
|
||||
{% endblock %}
|
||||
Loading…
Reference in new issue