source: seguimiento_proyectos/sepai/templates/proyectos/subproyecto_form.html @ 2e5b1d0

desarrollo
Last change on this file since 2e5b1d0 was 2e5b1d0, checked in by lhernandez <lhernandez@…>, 8 años ago

Levantada la plataforma para el desarrollo de la aplicacion SEPAI, realizado modelos de datos, vistas, login, adaptado templates para el proyecto

  • Propiedad mode establecida a 100644
File size: 2.7 KB
Línea 
1{% extends 'starter.html' %}
2{% block titulo %}_-=SEPAI-Registrar Sub-Proyecto=-_{% endblock titulo %}
3{% block extras_css %}
4{% load staticfiles %}
5  <link rel="stylesheet" href="{% static 'plugins/daterangepicker/daterangepicker.css' %}">
6  <!-- bootstrap datepicker -->
7  <link rel="stylesheet" href="{% static 'plugins/datepicker/datepicker3.css' %}">
8  <!-- iCheck for checkboxes and radio inputs -->
9  <link rel="stylesheet" href="{% static 'plugins/iCheck/all.css' %}">
10  <!-- Bootstrap Color Picker -->
11  <link rel="stylesheet" href="{% static 'plugins/colorpicker/bootstrap-colorpicker.min.css' %}">
12  <!-- Bootstrap time Picker -->
13  <link rel="stylesheet" href="{% static 'plugins/timepicker/bootstrap-timepicker.min.css' %}">
14  <!-- Select2 -->
15  <link rel="stylesheet" href="{% static 'plugins/select2/select2.min.css' %}">
16  <!-- Theme style -->
17  <link rel="stylesheet" href="{% static 'dist/css/AdminLTE.min.css' %}">
18  <!-- AdminLTE Skins. Choose a skin from the css/skins
19       folder instead of downloading all of them to reduce the load. -->
20  <link rel="stylesheet" href="{% static 'dist/css/skins/_all-skins.min.css' %}">
21{% endblock extras_css %}
22{% block content_header %}
23<section class="content-header">
24      <h1>
25        Registrar Subproyecto
26        <small>Por favor llenar el formulario</small>
27      </h1>
28      <ol class="breadcrumb">
29        <li><a href="#"><i class="fa fa-dashboard"></i> {% block breadcrumbs %} Level {% endblock breadcrumbs %}</a></li>
30        <li class="active">Here</li>
31      </ol>
32    </section>
33{% endblock content_header %}
34{% block activesubproyecto %} class="treeview active"{% endblock activesubproyecto %}
35{% block content_main %}
36      <div class="box box-default">
37        <div class="box-header with-border">
38          <h3 class="box-title">Select2</h3>
39
40          <div class="box-tools pull-right">
41            <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
42            <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-remove"></i></button>
43          </div>
44        </div>
45        <!-- /.box-header -->
46        <div class="box-body">
47          <div class="row">
48            <div class="col-md-6">
49              <div class="form-group">
50                <form method="post">
51                    {% csrf_token %}
52                    {{ form.as_p }}
53                    <input type="submit" value="Submit" />
54                </form>
55             </div>
56              <!-- /.form-group -->
57            </div>
58            <!-- /.col -->
59          </div>
60          <!-- /.row -->
61        </div>
62        <!-- /.box-body -->
63        <div class="box-footer">
64
65        </div>
66      </div>
67      <!-- /.box -->
68
69{% endblock content_main %}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.