home fini, début du reste
This commit is contained in:
parent
3f0ef8bac2
commit
e92295ee12
7 changed files with 50 additions and 36 deletions
|
@ -46,6 +46,7 @@ INSTALLED_APPS = (
|
||||||
'captcha',
|
'captcha',
|
||||||
'django_cas_ng',
|
'django_cas_ng',
|
||||||
'debug_toolbar',
|
'debug_toolbar',
|
||||||
|
'bootstrapform',
|
||||||
)
|
)
|
||||||
|
|
||||||
MIDDLEWARE_CLASSES = (
|
MIDDLEWARE_CLASSES = (
|
||||||
|
|
|
@ -210,6 +210,25 @@ fieldset legend {
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#main-content {
|
||||||
|
background-color: white ;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main-content h2 {
|
||||||
|
display : block;
|
||||||
|
padding : 12px;
|
||||||
|
margin: -20px -20px 10px -20px ;
|
||||||
|
font-family: 'Dosis', sans-serif;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: x-large;
|
||||||
|
color: white;
|
||||||
|
background-color:#DE826B;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 0px 0px 5px 0px;
|
||||||
|
border-color: #4F504B;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
main-container {
|
main-container {
|
||||||
max-width: 95%;
|
max-width: 95%;
|
||||||
|
@ -504,12 +523,14 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
header .banner {
|
header .banner {
|
||||||
padding-top : 20px;
|
padding-top : 15px;
|
||||||
padding-bottom : 20px;
|
padding-bottom : 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
header a,
|
header a,
|
||||||
header a:hover {
|
header a:hover,
|
||||||
|
header a:focus,
|
||||||
|
header a:active {
|
||||||
color : white ;
|
color : white ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -526,6 +547,13 @@ header a:hover {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.user-is-cof {
|
||||||
|
color : #ADE297;
|
||||||
|
}
|
||||||
|
.user-is-not-cof {
|
||||||
|
color: #F6BEBE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#header #homelink {
|
#header #homelink {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -547,6 +575,10 @@ header .member-status {
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
font-family: 'Dosis', sans-serif;
|
||||||
|
font-size: x-large;
|
||||||
|
}
|
||||||
@media (min-width: 480px) {
|
@media (min-width: 480px) {
|
||||||
header .member-status {
|
header .member-status {
|
||||||
float: right !important;
|
float: right !important;
|
||||||
|
|
|
@ -4,17 +4,13 @@
|
||||||
<header>
|
<header>
|
||||||
<div class="container banner">
|
<div class="container banner">
|
||||||
<a href="{% url "gestioncof.views.home" %}">
|
<a href="{% url "gestioncof.views.home" %}">
|
||||||
<div class="btn-toolbar" role=toolbar>
|
<h1>GestioCOF</h1>
|
||||||
<div class="btn-group">
|
{% block homelink %}
|
||||||
<button type=button class="btn btn-default home-link" aria-label="GestioCOF"><h1>{{ site.name }}</h1></button>
|
<span class="glyphicon glyphicon-home" aria-hidden=true></span>
|
||||||
{% block homelink %}
|
{% endblock %}
|
||||||
<button type=button class="btn btn-default home-link" aria-label="home"><span class="glyphicon glyphicon-home" aria-hidden=true></span></button>
|
|
||||||
{% endblock %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
</a>
|
||||||
<div class="member-status">
|
<div class="member-status">
|
||||||
<h2>{% if user.first_name %}{{ user.first_name }}{% else %}<tt>{{ user.username }}</tt>{% endif %}, <tt>{% if user.profile.is_cof %}Membre du COF{% else %}Non-membre du COF{% endif %}</tt></h2>
|
<h2>{% if user.first_name %}{{ user.first_name }}{% else %}<tt>{{ user.username }}</tt>{% endif %}, {% if user.profile.is_cof %}<tt class="user-is-cof">Membre du COF{% else %}<tt class="user-is-not-cof">Non-membre du COF{% endif %}</tt></h2>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.container -->
|
</div><!-- /.container -->
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -1,30 +1,11 @@
|
||||||
{% extends "base_header.html" %}
|
{% extends "base_header.html" %}
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<header>
|
|
||||||
<div class="container banner">
|
|
||||||
<a href="{% url "gestioncof.views.home" %}">
|
|
||||||
<div class="btn-toolbar" role=toolbar>
|
|
||||||
<div class="btn-group">
|
|
||||||
<button type=button class="btn btn-default home-link" aria-label="GestioCOF"><h1>{{ site.name }}</h1></button>
|
|
||||||
{% block homelink %}
|
|
||||||
<button type=button class="btn btn-default home-link" aria-label="home"><span class="glyphicon glyphicon-home" aria-hidden=true></span></button>
|
|
||||||
{% endblock %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
<div class="member-status">
|
|
||||||
<h2>{% if user.first_name %}{{ user.first_name }}{% else %}<tt>{{ user.username }}</tt>{% endif %}, <tt>{% if user.profile.is_cof %}Membre du COF{% else %}Non-membre du COF{% endif %}</tt></h2>
|
|
||||||
</div>
|
|
||||||
</div><!-- /.container -->
|
|
||||||
</header>
|
|
||||||
{% block interm_content %}
|
{% block interm_content %}
|
||||||
<div class="container hidden-xs espace"></div>
|
<div class="container hidden-xs espace"></div>
|
||||||
<div class="container" id="principal">
|
<div class="container">
|
||||||
<div id="main-content">
|
<div class="row" id="main-content">
|
||||||
{% block realcontent %}{% endblock %}
|
{% block realcontent %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="container hidden-xs espace"></div>
|
<div class="container hidden-xs espace"></div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% endblock %}
|
|
||||||
|
|
|
@ -101,13 +101,15 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div> <!-- /.row.home-menu -->
|
</div> <!-- /.row.home-menu -->
|
||||||
<div class="container hidden-xs espace"></div>
|
<div class="container hidden-xs espace"></div>
|
||||||
<div class="home-menu row {% if not user.profile.is_buro %}row-centered {%endif%}">
|
{% if not user.profile.is_buro %}
|
||||||
<div class="{% if user.profile.is_buro %}col-sm-6 {% else %}col-sm-8 col-sm-offset-2 col-xs-12 {%endif%}normal-user-hm">
|
<div class="home-menu row row-centered">
|
||||||
|
<div class="col-sm-8 col-sm-offset-2 col-xs-12 normal-user-hm">
|
||||||
<div class="foot-banner">
|
<div class="foot-banner">
|
||||||
<h3>Pour tout problème : <tt>cof@ens.fr.</tt></h3>
|
<h3>Pour tout problème : <tt>cof@ens.fr.</tt></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.row.home-menu -->
|
</div><!-- /.row.home-menu -->
|
||||||
|
{% endif %}
|
||||||
<div class="container hidden-xs espace"></div>
|
<div class="container hidden-xs espace"></div>
|
||||||
</div><!-- /.container -->
|
</div><!-- /.container -->
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{% extends "base_title.html" %}
|
{% extends "base_title.html" %}
|
||||||
|
{% load bootstrap %}
|
||||||
|
|
||||||
{% block realcontent %}
|
{% block realcontent %}
|
||||||
<h2>Sondage: {{ survey.title }}</h2>
|
<h2>Sondage: {{ survey.title }}</h2>
|
||||||
|
@ -14,7 +15,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<form method="post" action="{% url 'gestioncof.views.survey' survey.id %}">
|
<form method="post" action="{% url 'gestioncof.views.survey' survey.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.as_p }}
|
{{ form | bootstrap}}
|
||||||
<input type="submit" class="btn-submit" value="Enregistrer" />
|
<input type="submit" class="btn-submit" value="Enregistrer" />
|
||||||
{% if current_answer %}
|
{% if current_answer %}
|
||||||
<input type="submit" name="delete" class="btn-submit" value="Supprimer ma réponse" />
|
<input type="submit" name="delete" class="btn-submit" value="Supprimer ma réponse" />
|
||||||
|
|
|
@ -10,3 +10,4 @@ Pillow==2.9.0
|
||||||
simplejson==3.8.2
|
simplejson==3.8.2
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
unicodecsv==0.14.1
|
unicodecsv==0.14.1
|
||||||
|
bootstrapform
|
||||||
|
|
Loading…
Reference in a new issue