f4f:slicereq: fixed css
authorYasin <mohammed-yasin.rahman@lip6.fr>
Mon, 19 Jan 2015 17:41:21 +0000 (18:41 +0100)
committerYasin <mohammed-yasin.rahman@lip6.fr>
Mon, 19 Jan 2015 17:41:21 +0000 (18:41 +0100)
portal/templates/fed4fire/fed4fire_slicerequest_view.html
portal/templates/slice-request-view.html [deleted file]

index 98097db..c8fecf6 100644 (file)
@@ -4,7 +4,7 @@
 {% block content %}
        <div class="row">
                <div class="col-md-12">
-                        <div class="breadcrumbs">
+                        <div class="breadcrumbs" style="line-height: 3;">
                                 Experiment &nbsp;>&nbsp; Request a new Slice
                         </div>
                </div>
diff --git a/portal/templates/slice-request-view.html b/portal/templates/slice-request-view.html
deleted file mode 100644 (file)
index 830c7ee..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends "layout.html" %}
-{% load i18n %}
-
-{% block head %}
-{{ wizard.form.media }}
-<link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/registration.css" />
-{% endblock %}
-
-{% block content %}
-
-
-
-<div class="onelab-title well-lg">
-  <h2>Request a Slice</h2>
-</div>
-
-<div class='well'>
-  <form id="commentForm" class="form-horizontal" action="" method="post" role="form">{% csrf_token %}
-  <fieldset>
-    {% for field in form %}
-    <div class="form-group">
-      <label for="{{ field.html_name }}" class="col-xs-2 control-label">{{ field.label }}</label>
-      <div class="col-xs-4"> {{ field.errors }} {{ field }} </div>
-      <div class="col-xs-6"> <p class="form-hint">{{ field.help_text }}</p> </div>
-    </div>
-    {% endfor %}
-    <button class="submit btn btn-default" type="submit"><span class="glyphicon glyphicon-plus"></span> Request Slice</button>
-  </fieldset>
-  </form>
-</div>
-
-{% endblock %}