Conjunto de cambios a7d9305 en seguimiento_proyectos para sepai/templates/proyectos/subproyecto_form.html


Ignorar:
Fecha y hora:
19/06/2017 07:53:59 (hace 7 años)
Autor:
lhernandez <lhernandez@…>
Branches:
master, desarrollo
Children:
a7b5a73, bc9d913
Parents:
8c18ab8
Mensaje:

Modificado templates para implementar la funcionalidad del registro de sub-proyectos asociados a un poryecto, preparando modelo de datos para el sub-proyecto.

Fichero:
1 editado

Leyenda

No modificado
Añadido
Eliminado
  • sepai/templates/proyectos/subproyecto_form.html

    r2e5b1d0 ra7d9305  
    1 {% extends 'starter.html' %}
     1{% extends 'home.html' %}
    22{% 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>
     3{% block contenido-principal %}
     4<div class="col-md-12">
     5    <div class="panel-sepai">
     6    <section class="content-header">
     7          <h1>
     8            Registrar Subproyecto
     9            <small>Por favor llenar el formulario</small>
     10          </h1>
     11          <ol class="breadcrumb">
     12            <li><a href="#"><i class="fa fa-dashboard"></i> {% block breadcrumbs %} Level {% endblock breadcrumbs %}</a></li>
     13            <li class="active">Here</li>
     14          </ol>
     15        </section>
     16          <div class="box box-default">
     17            <div class="box-header with-border">
     18              <h3 class="box-title">Select2</h3>
    3919
    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>
     20              <div class="box-tools pull-right">
     21                <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
     22                <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-remove"></i></button>
     23              </div>
     24            </div>
     25            <!-- /.box-header -->
     26            <div class="box-body">
     27              <div class="row">
     28                <div class="col-md-6">
     29                  <div class="form-group">
     30                    <form method="post">
     31                        {% csrf_token %}
     32                        {{ form.as_p }}
     33                        <input type="submit" value="Submit" />
     34                    </form>
     35                 </div>
     36                  <!-- /.form-group -->
     37                </div>
     38                <!-- /.col -->
     39              </div>
     40              <!-- /.row -->
     41            </div>
     42            <!-- /.box-body -->
     43            <div class="box-footer">
     44
     45            </div>
    4346          </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>
    6747      <!-- /.box -->
    68 
    69 {% endblock content_main %}
     48    </div>
     49</div>
     50{% endblock contenido-principal %}
Nota: Vea TracChangeset para ayuda en el uso del visor de conjuntos de cambios.