Yohann D'ANELLO
5 years ago
No known key found for this signature in database
GPG Key ID: 3A75C55819C8CF85
3 changed files with
9 additions and
1 deletions
-
portail/locale/fr/LC_MESSAGES/django.po
-
portail/templates/portail/index.html
-
portail/urls.py
|
|
|
@ -8,7 +8,7 @@ msgid "" |
|
|
|
msgstr "" |
|
|
|
"Project-Id-Version: PACKAGE VERSION\n" |
|
|
|
"Report-Msgid-Bugs-To: \n" |
|
|
|
"POT-Creation-Date: 2021-02-01 12:03+0100\n" |
|
|
|
"POT-Creation-Date: 2021-02-01 12:15+0100\n" |
|
|
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
|
|
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
|
|
|
"Language-Team: LANGUAGE <LL@li.org>\n" |
|
|
|
@ -117,6 +117,10 @@ msgstr "" |
|
|
|
msgid "Buy a new subscription" |
|
|
|
msgstr "Payer une nouvelle adhésion" |
|
|
|
|
|
|
|
#: templates/portail/index.html:71 |
|
|
|
msgid "About Re2o..." |
|
|
|
msgstr "À propos de Re2o ..." |
|
|
|
|
|
|
|
#: templates/portail/signup.html:37 |
|
|
|
msgid "Confirm" |
|
|
|
msgstr "Confirmer" |
|
|
|
|
|
|
|
@ -67,4 +67,6 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
</div> |
|
|
|
|
|
|
|
<a class="btn btn-info" href="{% url "portail:about" %}"> <i class="fa fa-info-circle"></i> {% trans "About Re2o..." %}</a> |
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
@ -34,6 +34,7 @@ accessing to the full Re2o. |
|
|
|
from cotisations.views import new_facture |
|
|
|
from django.conf.urls import url |
|
|
|
from django.contrib.auth.views import LoginView |
|
|
|
from re2o.views import about_page |
|
|
|
|
|
|
|
from .views import IndexView, SignUpView |
|
|
|
|
|
|
|
@ -42,4 +43,5 @@ urlpatterns = [ |
|
|
|
url(r"^signup/$", SignUpView.as_view(), name="signup"), |
|
|
|
url(r"^login/$", LoginView.as_view(), name="login"), |
|
|
|
url(r"^extend-connection/(?P<userid>[0-9]+)/$", new_facture, name="extend-connection"), |
|
|
|
url(r"^about/$", about_page, name="about"), |
|
|
|
] |
|
|
|
|