Skip to content

Commit 477da4d

Browse files
committed
Merge branch 'develop'
2 parents 680385c + 0617d5a commit 477da4d

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{% extends "base.html" %}
2+
{% load gravatar %}
3+
{% load sass_tags %}
4+
{% load static %}
5+
{% block title %}
6+
Lancer un nouveau portail
7+
{% endblock title %}
8+
{% block og_title %}
9+
Lancer un nouveau portail
10+
{% endblock og_title %}
11+
{% block css %}
12+
<link href="{% sass_src 'home/css/home/home.scss' %}"
13+
rel="stylesheet"
14+
type="text/css">
15+
<link href="{% sass_src 'home/css/dsfr/custom-dsfr.scss' %}"
16+
rel="stylesheet"
17+
type="text/css">
18+
{% endblock css %}
19+
{% block content %}
20+
<div class="col-8 fr-mt-3w fr-py-2w g-0 fr-mx-auto font-marianne">
21+
22+
23+
<h2>🚀 Lancer un nouveau portail</h2>
24+
25+
<form class="form" method="POST" action="{% url "site-create" %}">
26+
{% csrf_token %}
27+
{{ form.as_p }}
28+
29+
<button class="fr-btn" role="submit">Créer le portail !²</button>
30+
</form>
31+
32+
<span>²very beta feature</span>
33+
</div>
34+
{% endblock content %}

0 commit comments

Comments
 (0)