From 6f9b9e4127e551621b27e4e88c5dc23c6a0f84ac Mon Sep 17 00:00:00 2001 From: Juliette Luiselli Date: Mon, 25 Mar 2019 22:30:25 +0100 Subject: [PATCH 1/3] html page d'accueil et css --- annuaire/urls.py | 3 +- fiches/static/fiches/css/style.css | 352 +++++++++++++++++++++++++++++ fiches/templates/fiches/base.html | 60 +++++ fiches/templates/fiches/fiche.html | 1 + fiches/urls.py | 6 + fiches/views.py | 3 + picture/pnmadela2.jpg | Bin 0 -> 3561 bytes 7 files changed, 424 insertions(+), 1 deletion(-) create mode 100644 fiches/static/fiches/css/style.css create mode 100644 fiches/templates/fiches/base.html create mode 100644 fiches/templates/fiches/fiche.html create mode 100644 fiches/urls.py create mode 100644 picture/pnmadela2.jpg diff --git a/annuaire/urls.py b/annuaire/urls.py index 1d7e4ba..22e75b3 100644 --- a/annuaire/urls.py +++ b/annuaire/urls.py @@ -14,8 +14,9 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import path +from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), + path('fiche/', include('fiches.urls')) ] diff --git a/fiches/static/fiches/css/style.css b/fiches/static/fiches/css/style.css new file mode 100644 index 0000000..63a70ef --- /dev/null +++ b/fiches/static/fiches/css/style.css @@ -0,0 +1,352 @@ +html { + background: url(../images/background-motif.png) repeat; + color: #FFF; + font-family: Verdana, Verdana, Geneva, sans-serif; +} + +body { + margin: 0 0 0.8em 0; + background: transparent url(../images/background.png) no-repeat center top; + min-height: 538px; +} + +img { + border: 0; +} + +a:link { + background-color: inherit; + color: #7978DA; + text-decoration: none; +} + +a:visited { + background-color: inherit; + color: #9CA6FF; + text-decoration: none; +} + +a:hover { + background-color: inherit; + color: #006CE3; + text-decoration: underline; +} + +p { + margin-top: 0.6em; + margin-bottom: 0.6em; +} + +.ens { + color: #89C4FF; + background-color: inherit; +} + +.tiny { + font-size: 0.8em; +} + +.verytiny { + font-size: 0.7em; +} + +.dark { + color: #666; + background-color: inherit; +} + +.center { + text-align: center; +} + +.right { + float: right; +} + +.spacer { + width: 100%; + clear: both; +} + +.error { + font-weight: bold; + color: #FB0000; + background-color: inherit; +} + +.warning { + font-weight: bold; + color: #FF8A00; + background-color: inherit; +} + +.mainspacer { + width: 100%; + height: 0.8em; +} + +.success { + font-weight: bold; + color: #00E000; + background-color: inherit; +} + +.success a:link { + background-color: inherit; + color: #008800; + text-decoration: none; +} + +.success a:visited { + background-color: inherit; + color: #008800; + text-decoration: none; +} + +.success a:hover { + background-color: inherit; + color: #4FFF4F; + text-decoration: underline; +} + +.block { + background-color: #333; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + text-align: justify; + padding: 0.5em 0.5em; + margin: 0 1em 1em 1em; +} + +#main { + padding-top: 0.5em; + margin-left: 1em; + background-color: transparent; + color: #FFF; + width: 40em; + float: left; +} + +#header { + margin: 0 1em 0 1em; + float: left; + text-align: center; +} + +#header h1 { + margin-top: 0; + font-family: Georgia, sans-serif; +} + +#header h1 a:link, #header h1 a:visited { + color: #FFF; + background-color: inherit; + text-decoration: none; +} + +#header h1 a:hover { + text-decoration: underline; +} + +#language_switch { + margin-top: 0.5em; + float: left; +} + +#language_switch form { + float: left; + padding: 0; + margin-left: 0.5em; +} + +#content { +} + +#content h3 { + margin-top: 0; + margin-bottom: 0.2em; +} + +#content h4 { + margin-top: 0.5em; + margin-bottom: 0.2em; +} + +#footer { + padding: 0.2em 0; + margin: 1em 5em 0 5em; + clear: both; + background-color: #333; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + text-align: center; +} + +#contact { + margin: 0.5em 8em 0 8em; +} + +#search { + margin-bottom: 1em; +} + +.errorlist { + display: inline; + margin-top: 0; + margin-bottom: 0; + padding-left: 0; +} + +.errorlist li { + display: inline; + font-weight: bold; + color: #E00000; + background-color: inherit; +} + +#advanced_search { + border: 1px solid #CCC; + padding: 0.5em; + margin-bottom: 1em; +} + +.advanced_filter { + width: 50%; + margin-top: 1px; + margin-bottom: 1px; + float: left; +} + +.advanced_filter input { + max-width: 60%; +} + +.submit_button { + text-align: center; +} + +.add_delete_button { + text-align: right; + margin: 0.3em; +} + +#pdflink { + text-align: right; + font-size: 0.8em; +} + +#picture { + width: 8em; + float: left; +} + +#picture img { + margin-top: 0.3em; + max-width: 8em; +} + +#infos { + padding-left: 1em; + float: left; + width: 31em; +} + +#ficheedit { + margin-top: 0; + padding-top: 0; +} + +.editfield { + padding-top: 0.2em; + padding-bottom: 0.2em; +} + +.editfield input { +} + +.editfield textarea { + margin-left: auto; + margin-right: auto; + margin-top:0.2em; + display: block; + width: 98%; + height: 3em; +} + +.message { + margin-top: 0.3em; + margin-bottom: 0.3em; + text-align: center; +} + +.long_message { + margin-top: 0.6em; + margin-bottom: 0.6em; + text-align: justify; +} + +fieldset.address .editfield textarea, fieldset.quote .editfield textarea { + height: 3em; +} + +fieldset.address, fieldset.quote { + padding-bottom: 0.2em; +} + +#main-login-container { + width: 500px; + margin: 3.5em auto; +} + +#main-login-container h3.error { + text-align: center; + width: 100%; + margin-bottom: 20px; + font-size: 1.3em; + font-family: 'Droid Serif', serif; +} + +#main-login { + width: 500px; + border: 15px solid #333; + -webkit-border-radius: 20px; + -moz-border-radius: 20px; + border-radius: 20px; +} + +#main-login.login_block { + padding: 2em; + box-shadow: 0 0 100px #AAA inset; +} + +a#login_clipper, a#login_outsider { + float: left; + display: block; + width: 250px; + height: 200px; + text-align: center; + font-family: 'Droid Serif', serif; + font-size: 1.3em; + font-weight: bold; + line-height: 190px; + text-decoration: none; + color: #FFF; +} + +a#login_clipper { + background-color: #123E96; + box-shadow: 0 0 100px #040C78 inset; +} + +a#login_clipper:hover { + background-color: #164BB6; +} + +a#login_outsider { + background-color: #961221; + box-shadow: 0 0 100px #780411 inset; +} + +a#login_outsider:hover { + background-color: #B31729; +} diff --git a/fiches/templates/fiches/base.html b/fiches/templates/fiches/base.html new file mode 100644 index 0000000..dcfe049 --- /dev/null +++ b/fiches/templates/fiches/base.html @@ -0,0 +1,60 @@ +{% load i18n %} +{% load staticfiles %} + + + + + + {% block title_onglet %}{% trans "Annuaire des élèves de l'ENS" %}{% endblock %} + + + +{% block extrahead %}{% endblock %} +{# Pour pouvoir ajouter des trucs dans le head sur une autre page #} + + + +
+
+ + {% block contentspacer %}{% endblock %} + {% block content %}{% endblock %} + +
+ +
+ + {% block contact %} + + {% trans "Contacter l'équipe annuaire" %} + + + powered by Django, KDENS + +
+ {% endblock %} + +
+
+
+ + diff --git a/fiches/templates/fiches/fiche.html b/fiches/templates/fiches/fiche.html new file mode 100644 index 0000000..ee8a4db --- /dev/null +++ b/fiches/templates/fiches/fiche.html @@ -0,0 +1 @@ +{% extends "fiches/base.html" %} \ No newline at end of file diff --git a/fiches/urls.py b/fiches/urls.py new file mode 100644 index 0000000..a155217 --- /dev/null +++ b/fiches/urls.py @@ -0,0 +1,6 @@ +from django.urls import path +from . import views + +urlpatterns = [ + path('',views.fiche, name='fiche') + ] \ No newline at end of file diff --git a/fiches/views.py b/fiches/views.py index 91ea44a..367322e 100644 --- a/fiches/views.py +++ b/fiches/views.py @@ -1,3 +1,6 @@ from django.shortcuts import render # Create your views here. + +def fiche(request): + return render(request,'fiches/fiche.html',{}) \ No newline at end of file diff --git a/picture/pnmadela2.jpg b/picture/pnmadela2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d53a11a8b697e9915f32863b1025675c954a5de3 GIT binary patch literal 3561 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 MZ(mG&-kwkX2lz{uS^xk5 literal 0 HcmV?d00001 From 9f254fc839401c71c96be70274b67a8b1a8f02e3 Mon Sep 17 00:00:00 2001 From: Juliette Luiselli Date: Mon, 8 Apr 2019 20:07:38 +0200 Subject: [PATCH 2/3] add import --- annuaire/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/annuaire/urls.py b/annuaire/urls.py index 22e75b3..125db47 100644 --- a/annuaire/urls.py +++ b/annuaire/urls.py @@ -13,6 +13,7 @@ Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ +from django.conf import settings from django.contrib import admin from django.urls import path, include From a672e439e8079fcf20058a6d548556bff9ec8343 Mon Sep 17 00:00:00 2001 From: Juliette Luiselli Date: Mon, 8 Apr 2019 21:47:50 +0200 Subject: [PATCH 3/3] page fiche (html) --- .gitignore | 6 +- annuaire/settings.py | 6 +- annuaire/urls.py | 4 ++ fiches/migrations/0002_auto_20190408_1929.py | 24 +++++++ fiches/models.py | 12 +++- fiches/static/fiches/css/style.css | 3 +- fiches/templates/fiches/fiche.html | 67 ++++++++++++++++++- fiches/urls.py | 2 +- fiches/views.py | 9 ++- picture/pnmadela2.jpg | Bin 3561 -> 0 bytes 10 files changed, 119 insertions(+), 14 deletions(-) create mode 100644 fiches/migrations/0002_auto_20190408_1929.py delete mode 100644 picture/pnmadela2.jpg diff --git a/.gitignore b/.gitignore index 1e6486a..51af000 100644 --- a/.gitignore +++ b/.gitignore @@ -4,11 +4,7 @@ *~ *# -/media/archives/* -/media/images/* -/media/documents/* -/media/original_images/* -/media/admin +/media/picture /recensements/ /venv/ diff --git a/annuaire/settings.py b/annuaire/settings.py index 614c878..32af7e0 100644 --- a/annuaire/settings.py +++ b/annuaire/settings.py @@ -103,7 +103,7 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/dev/topics/i18n/ -LANGUAGE_CODE = 'en-us' +LANGUAGE_CODE = 'fr-fr' TIME_ZONE = 'UTC' @@ -118,3 +118,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/dev/howto/static-files/ STATIC_URL = '/static/' + +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') + +MEDIA_URL = '/media/' \ No newline at end of file diff --git a/annuaire/urls.py b/annuaire/urls.py index 125db47..0c8e865 100644 --- a/annuaire/urls.py +++ b/annuaire/urls.py @@ -16,8 +16,12 @@ Including another URLconf from django.conf import settings from django.contrib import admin from django.urls import path, include +from django.conf.urls.static import static urlpatterns = [ path('admin/', admin.site.urls), path('fiche/', include('fiches.urls')) ] + +if settings.DEBUG: + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/fiches/migrations/0002_auto_20190408_1929.py b/fiches/migrations/0002_auto_20190408_1929.py new file mode 100644 index 0000000..6b5f8eb --- /dev/null +++ b/fiches/migrations/0002_auto_20190408_1929.py @@ -0,0 +1,24 @@ +# Generated by Django 2.2 on 2019-04-08 19:29 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('fiches', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='phone', + name='profile', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fiches.Profile', verbose_name='profil'), + ), + migrations.AlterField( + model_name='social', + name='profile', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fiches.Profile', verbose_name='profil'), + ), + ] diff --git a/fiches/models.py b/fiches/models.py index beeac8d..9324314 100644 --- a/fiches/models.py +++ b/fiches/models.py @@ -26,23 +26,31 @@ class Profile(models.Model): keep_me = models.BooleanField( default=False, verbose_name=_("conserver la fiche annuaire ?") ) + def __str__(self): + return self.full_name class Department(models.Model): name = models.CharField(max_length=1023, verbose_name=_("nom du département")) + def __str__(self): + return self.name class Phone(models.Model): - profile = models.OneToOneField( + profile = models.ForeignKey( Profile, on_delete=models.CASCADE, verbose_name=_("profil") ) name = models.CharField(max_length=1023, verbose_name=_("type")) number = models.CharField(max_length=1023, verbose_name=_("numéro")) + def __str__(self): + return "{} : {}".format(self.name, self.number) class Social(models.Model): - profile = models.OneToOneField( + profile = models.ForeignKey( Profile, on_delete=models.CASCADE, verbose_name=_("profil") ) name = models.CharField(max_length=1023, verbose_name=_("type")) content = models.CharField(max_length=1023, verbose_name=_("contenu")) + def __str__(self): + return "{} : {}".format(self.name, self.content) \ No newline at end of file diff --git a/fiches/static/fiches/css/style.css b/fiches/static/fiches/css/style.css index 63a70ef..a5780d0 100644 --- a/fiches/static/fiches/css/style.css +++ b/fiches/static/fiches/css/style.css @@ -1,12 +1,11 @@ html { - background: url(../images/background-motif.png) repeat; + background-color: black; color: #FFF; font-family: Verdana, Verdana, Geneva, sans-serif; } body { margin: 0 0 0.8em 0; - background: transparent url(../images/background.png) no-repeat center top; min-height: 538px; } diff --git a/fiches/templates/fiches/fiche.html b/fiches/templates/fiches/fiche.html index ee8a4db..f51cb68 100644 --- a/fiches/templates/fiches/fiche.html +++ b/fiches/templates/fiches/fiche.html @@ -1 +1,66 @@ -{% extends "fiches/base.html" %} \ No newline at end of file +{% extends "fiches/base.html" %} +{% block content %} +
+
+ +
+
+

{{ profile.full_name }} + ({{ profile.promotion }}) + {% if profile.nickname %} + alias:{{ profile.nickname }})

+ {% endif %} +

+ {% if profile.department.exists %} + Département{{ profile.department.count|pluralize}} : + {% endif %} + {% for dep in profile.department.all %} + {{ dep }} + {% if not forloop.last %} + , + {% endif %} + {% endfor %} + {% if profile.birth_date %} +

+

+ {% if profile.phone_set.exists %} + Téléphone{{ profile.phone_set.count|pluralize}} : + {% endif %} + {% for ph in profile.phone_set.all %} + {{ ph }} + {% if not forloop.last %} + ,
+ {% endif %} + {% endfor %} +

+

+ {% if profile.social_set.exists %} + {{ profile.social_set.count|pluralize:"Réseau social,Réseaux sociaux"}} : + {% endif %} + {% for ph in profile.social_set.all %} + {{ ph }} + {% if not forloop.last %} + ,
+ {% endif %} + {% endfor %} +

+

+ Date de naissance : {{ profile.birth_date }} +

+ {% endif %} + + {% if profile.thurne %} +

+ Thurne : {{ profile.thurne }} +

+ {% endif %} +
+
+
+ {% if profile.text_field %} +

+ Champ libre : {{ profile.text_field }} +

+ {% endif %} +
+{% endblock %} \ No newline at end of file diff --git a/fiches/urls.py b/fiches/urls.py index a155217..c9dd17a 100644 --- a/fiches/urls.py +++ b/fiches/urls.py @@ -2,5 +2,5 @@ from django.urls import path from . import views urlpatterns = [ - path('',views.fiche, name='fiche') + path('',views.fiche, name='fiche') ] \ No newline at end of file diff --git a/fiches/views.py b/fiches/views.py index 367322e..214d33f 100644 --- a/fiches/views.py +++ b/fiches/views.py @@ -1,6 +1,11 @@ from django.shortcuts import render +from django.shortcuts import get_object_or_404 +from .models import Profile # Create your views here. -def fiche(request): - return render(request,'fiches/fiche.html',{}) \ No newline at end of file +def fiche(request,id): + profile=get_object_or_404(Profile,id=id) + return render(request,'fiches/fiche.html',{"profile":profile}) + + diff --git a/picture/pnmadela2.jpg b/picture/pnmadela2.jpg deleted file mode 100644 index d53a11a8b697e9915f32863b1025675c954a5de3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3561 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 MZ(mG&-kwkX2lz{uS^xk5