mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-08-02 13:44:20 +02:00
Compare commits
16 Commits
wei
...
0b8fa4001d
Author | SHA1 | Date | |
---|---|---|---|
|
0b8fa4001d | ||
|
0992a8a7ee | ||
|
12477b33cb | ||
|
8c3ae338ea | ||
|
4975c1ab6f | ||
|
61999a31a5 | ||
|
b217f7ceec | ||
|
03c1bb41b6 | ||
|
f03c13a4b8 | ||
|
e6f3084588 | ||
|
145e55da75 | ||
|
d3ba95cdca | ||
|
8ffb0ebb56 | ||
|
5038af9e34 | ||
|
819b4214c9 | ||
|
b8a93b0b75 |
@@ -32,7 +32,7 @@ class ActivityForm(forms.ModelForm):
|
||||
def clean_organizer(self):
|
||||
organizer = self.cleaned_data['organizer']
|
||||
if not organizer.note.is_active:
|
||||
self.add_error('organiser', _('The note of this club is inactive.'))
|
||||
self.add_error('organizer', _('The note of this club is inactive.'))
|
||||
return organizer
|
||||
|
||||
def clean_date_end(self):
|
||||
|
@@ -38,6 +38,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
||||
</a>
|
||||
|
||||
<input id="alias" type="text" class="form-control" placeholder="Nom/note ...">
|
||||
<button id="trigger" class="btn btn-secondary">Click me !</button>
|
||||
|
||||
<hr>
|
||||
|
||||
@@ -63,15 +64,46 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
||||
refreshBalance();
|
||||
}
|
||||
|
||||
function process_qrcode() {
|
||||
let name = alias_obj.val();
|
||||
$.get("/api/note/note?search=" + name + "&format=json").done(
|
||||
function (res) {
|
||||
let note = res.results[0];
|
||||
$.post("/api/activity/entry/?format=json", {
|
||||
csrfmiddlewaretoken: CSRF_TOKEN,
|
||||
activity: {{ activity.id }},
|
||||
note: note.id,
|
||||
guest: null
|
||||
}).done(function () {
|
||||
addMsg(interpolate(gettext(
|
||||
"Entry made for %s whose balance is %s €"),
|
||||
[note.name, note.balance / 100]), "success", 4000);
|
||||
reloadTable(true);
|
||||
}).fail(function (xhr) {
|
||||
errMsg(xhr.responseJSON, 4000);
|
||||
});
|
||||
}).fail(function (xhr) {
|
||||
errMsg(xhr.responseJSON, 4000);
|
||||
});
|
||||
}
|
||||
|
||||
alias_obj.keyup(function(event) {
|
||||
let code = event.originalEvent.keyCode
|
||||
if (65 <= code <= 122 || code === 13) {
|
||||
debounce(reloadTable)()
|
||||
}
|
||||
if (code === 0)
|
||||
process_qrcode();
|
||||
});
|
||||
|
||||
$(document).ready(init);
|
||||
|
||||
alias_obj2 = document.getElementById("alias");
|
||||
$("#trigger").click(function (e) {
|
||||
addMsg("Clicked", "success", 1000);
|
||||
alias_obj.val(alias_obj.val() + "\0");
|
||||
alias_obj2.dispatchEvent(new KeyboardEvent('keyup'));
|
||||
})
|
||||
function init() {
|
||||
$(".table-row").click(function (e) {
|
||||
let target = e.target.parentElement;
|
||||
@@ -168,4 +200,4 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
||||
});
|
||||
}
|
||||
</script>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
@@ -60,7 +60,10 @@
|
||||
{% if user_object.pk == user.pk %}
|
||||
<div class="text-center">
|
||||
<a class="small badge badge-secondary" href="{% url 'member:auth_token' %}">
|
||||
<i class="fa fa-cogs"></i>{% trans 'API token' %}
|
||||
<i class="fa fa-cogs"></i> {% trans 'API token' %}
|
||||
</a>
|
||||
<a class="small badge badge-secondary" href="{% url 'member:qr_code' user_object.pk %}">
|
||||
<i class="fa fa-qrcode"></i> {% trans 'QR Code' %}
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
36
apps/member/templates/member/qr_code.html
Normal file
36
apps/member/templates/member/qr_code.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{% extends "base.html" %}
|
||||
{% comment %}
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
{% endcomment %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
<div class="card bg-light">
|
||||
<h3 class="card-header text-center">
|
||||
{% trans "QR Code for" %} {{ user_object.username }} ({{ user_object.first_name }} {{user_object.last_name }})
|
||||
</h3>
|
||||
<div class="text-center" id="qrcode">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block extrajavascript %}
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js" integrity="sha512-CNgIRecGo7nphbeZ04Sc13ka07paqdeTu0WR1IM4kNcpmBAUSHSQX0FslNhTDadL4O5SAGapGt4FodqL8My0mA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
<script>
|
||||
var qrc = new QRCode(document.getElementById("qrcode"), {
|
||||
text: "{{ user_object.pk }}\0",
|
||||
width: 1024,
|
||||
height: 1024
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block extracss %}
|
||||
<style>
|
||||
img {
|
||||
width: 100%
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
@@ -25,4 +25,5 @@ urlpatterns = [
|
||||
path('user/<int:pk>/aliases/', views.ProfileAliasView.as_view(), name="user_alias"),
|
||||
path('user/<int:pk>/trust', views.ProfileTrustView.as_view(), name="user_trust"),
|
||||
path('manage-auth-token/', views.ManageAuthTokens.as_view(), name='auth_token'),
|
||||
path('user/<int:pk>/qr_code/', views.QRCodeView.as_view(), name='qr_code'),
|
||||
]
|
||||
|
@@ -402,6 +402,14 @@ class ManageAuthTokens(LoginRequiredMixin, TemplateView):
|
||||
context['token'] = Token.objects.get_or_create(user=self.request.user)[0]
|
||||
return context
|
||||
|
||||
class QRCodeView(LoginRequiredMixin, DetailView):
|
||||
"""
|
||||
Affiche le QR Code
|
||||
"""
|
||||
model = User
|
||||
context_object_name = "user_object"
|
||||
template_name = "member/qr_code.html"
|
||||
extra_context = {"title": _("QR Code")}
|
||||
|
||||
# ******************************* #
|
||||
# CLUB #
|
||||
|
@@ -69,7 +69,7 @@ class WEIRegistrationForm(forms.ModelForm):
|
||||
class WEIChooseBusForm(forms.Form):
|
||||
bus = forms.ModelMultipleChoiceField(
|
||||
queryset=Bus.objects,
|
||||
label=_("bus"),
|
||||
label=_("Bus"),
|
||||
help_text=_("This choice is not definitive. The WEI organizers are free to attribute for you a bus and a team,"
|
||||
+ " in particular if you are a free eletron."),
|
||||
widget=CheckboxSelectMultiple(),
|
||||
|
@@ -30,117 +30,117 @@ WORDS = {
|
||||
'Description 1',
|
||||
{
|
||||
3: 'Réponse 1 Madagas[car]',
|
||||
4: 'Réponse 1 Y2[KAR]',
|
||||
43: 'Réponse 1 Y2[KAR]',
|
||||
2: 'Réponse 1 Tcherno[bus]',
|
||||
5: 'Réponse 1 [Kar]tier',
|
||||
45: 'Réponse 1 [Kar]tier',
|
||||
1: 'Réponse 1 [Car]cassonne',
|
||||
6: 'Réponse 1 O[car]ina',
|
||||
7: 'Réponse 1 Show[bus]',
|
||||
8: 'Réponse 1 [Car]ioca'
|
||||
47: 'Réponse 1 O[car]ina',
|
||||
48: 'Réponse 1 Show[bus]',
|
||||
49: 'Réponse 1 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 2': [
|
||||
'Description 2',
|
||||
{
|
||||
3: 'Réponse 2 Madagas[car]',
|
||||
4: 'Réponse 2 Y2[KAR]',
|
||||
43: 'Réponse 2 Y2[KAR]',
|
||||
2: 'Réponse 2 Tcherno[bus]',
|
||||
5: 'Réponse 2 [Kar]tier',
|
||||
45: 'Réponse 2 [Kar]tier',
|
||||
1: 'Réponse 2 [Car]cassonne',
|
||||
6: 'Réponse 2 O[car]ina',
|
||||
7: 'Réponse 2 Show[bus]',
|
||||
8: 'Réponse 2 [Car]ioca'
|
||||
47: 'Réponse 2 O[car]ina',
|
||||
48: 'Réponse 2 Show[bus]',
|
||||
49: 'Réponse 2 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 3': [
|
||||
'Description 3',
|
||||
{
|
||||
3: 'Réponse 3 Madagas[car]',
|
||||
4: 'Réponse 3 Y2[KAR]',
|
||||
43: 'Réponse 3 Y2[KAR]',
|
||||
2: 'Réponse 3 Tcherno[bus]',
|
||||
5: 'Réponse 3 [Kar]tier',
|
||||
45: 'Réponse 3 [Kar]tier',
|
||||
1: 'Réponse 3 [Car]cassonne',
|
||||
6: 'Réponse 3 O[car]ina',
|
||||
7: 'Réponse 3 Show[bus]',
|
||||
8: 'Réponse 3 [Car]ioca'
|
||||
47: 'Réponse 3 O[car]ina',
|
||||
48: 'Réponse 3 Show[bus]',
|
||||
49: 'Réponse 3 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 4': [
|
||||
'Description 4',
|
||||
{
|
||||
3: 'Réponse 4 Madagas[car]',
|
||||
4: 'Réponse 4 Y2[KAR]',
|
||||
43: 'Réponse 4 Y2[KAR]',
|
||||
2: 'Réponse 4 Tcherno[bus]',
|
||||
5: 'Réponse 4 [Kar]tier',
|
||||
45: 'Réponse 4 [Kar]tier',
|
||||
1: 'Réponse 4 [Car]cassonne',
|
||||
6: 'Réponse 4 O[car]ina',
|
||||
7: 'Réponse 4 Show[bus]',
|
||||
8: 'Réponse 4 [Car]ioca'
|
||||
47: 'Réponse 4 O[car]ina',
|
||||
48: 'Réponse 4 Show[bus]',
|
||||
49: 'Réponse 4 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 5': [
|
||||
'Description 5',
|
||||
{
|
||||
3: 'Réponse 5 Madagas[car]',
|
||||
4: 'Réponse 5 Y2[KAR]',
|
||||
43: 'Réponse 5 Y2[KAR]',
|
||||
2: 'Réponse 5 Tcherno[bus]',
|
||||
5: 'Réponse 5 [Kar]tier',
|
||||
45: 'Réponse 5 [Kar]tier',
|
||||
1: 'Réponse 5 [Car]cassonne',
|
||||
6: 'Réponse 5 O[car]ina',
|
||||
7: 'Réponse 5 Show[bus]',
|
||||
8: 'Réponse 5 [Car]ioca'
|
||||
47: 'Réponse 5 O[car]ina',
|
||||
48: 'Réponse 5 Show[bus]',
|
||||
49: 'Réponse 5 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 6': [
|
||||
'Description 6',
|
||||
{
|
||||
3: 'Réponse 6 Madagas[car]',
|
||||
4: 'Réponse 6 Y2[KAR]',
|
||||
43: 'Réponse 6 Y2[KAR]',
|
||||
2: 'Réponse 6 Tcherno[bus]',
|
||||
5: 'Réponse 6 [Kar]tier',
|
||||
45: 'Réponse 6 [Kar]tier',
|
||||
1: 'Réponse 6 [Car]cassonne',
|
||||
6: 'Réponse 6 O[car]ina',
|
||||
7: 'Réponse 6 Show[bus]',
|
||||
8: 'Réponse 6 [Car]ioca'
|
||||
47: 'Réponse 6 O[car]ina',
|
||||
48: 'Réponse 6 Show[bus]',
|
||||
49: 'Réponse 6 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 7': [
|
||||
'Description 7',
|
||||
{
|
||||
3: 'Réponse 7 Madagas[car]',
|
||||
4: 'Réponse 7 Y2[KAR]',
|
||||
43: 'Réponse 7 Y2[KAR]',
|
||||
2: 'Réponse 7 Tcherno[bus]',
|
||||
5: 'Réponse 7 [Kar]tier',
|
||||
45: 'Réponse 7 [Kar]tier',
|
||||
1: 'Réponse 7 [Car]cassonne',
|
||||
6: 'Réponse 7 O[car]ina',
|
||||
7: 'Réponse 7 Show[bus]',
|
||||
8: 'Réponse 7 [Car]ioca'
|
||||
47: 'Réponse 7 O[car]ina',
|
||||
48: 'Réponse 7 Show[bus]',
|
||||
49: 'Réponse 7 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 8': [
|
||||
'Description 8',
|
||||
{
|
||||
3: 'Réponse 8 Madagas[car]',
|
||||
4: 'Réponse 8 Y2[KAR]',
|
||||
43: 'Réponse 8 Y2[KAR]',
|
||||
2: 'Réponse 8 Tcherno[bus]',
|
||||
5: 'Réponse 8 [Kar]tier',
|
||||
45: 'Réponse 8 [Kar]tier',
|
||||
1: 'Réponse 8 [Car]cassonne',
|
||||
6: 'Réponse 8 O[car]ina',
|
||||
7: 'Réponse 8 Show[bus]',
|
||||
8: 'Réponse 8 [Car]ioca'
|
||||
47: 'Réponse 8 O[car]ina',
|
||||
48: 'Réponse 8 Show[bus]',
|
||||
49: 'Réponse 8 [Car]ioca'
|
||||
}
|
||||
],
|
||||
'Question 9': [
|
||||
'Description 9',
|
||||
{
|
||||
3: 'Réponse 9 Madagas[car]',
|
||||
4: 'Réponse 9 Y2[KAR]',
|
||||
43: 'Réponse 9 Y2[KAR]',
|
||||
2: 'Réponse 9 Tcherno[bus]',
|
||||
5: 'Réponse 9 [Kar]tier',
|
||||
45: 'Réponse 9 [Kar]tier',
|
||||
1: 'Réponse 9 [Car]cassonne',
|
||||
6: 'Réponse 9 O[car]ina',
|
||||
7: 'Réponse 9 Show[bus]',
|
||||
8: 'Réponse 9 [Car]ioca'
|
||||
47: 'Réponse 9 O[car]ina',
|
||||
48: 'Réponse 9 Show[bus]',
|
||||
49: 'Réponse 9 [Car]ioca'
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -366,41 +366,24 @@ class WEISurvey2025(WEISurvey):
|
||||
|
||||
@lru_cache()
|
||||
def score(self, bus):
|
||||
"""
|
||||
The score given by the answers to the questions
|
||||
"""
|
||||
if not self.is_complete():
|
||||
raise ValueError("Survey is not ended, can't calculate score")
|
||||
# Score is the given score by the bus subtracted to the mid-score of the buses.
|
||||
s = sum(1 for q in WORDS['questions'] if getattr(self.information, q) == bus.pk)
|
||||
return s
|
||||
|
||||
@lru_cache()
|
||||
def score_words(self, bus):
|
||||
"""
|
||||
The score given by the choice of words
|
||||
"""
|
||||
if not self.is_complete():
|
||||
raise ValueError("Survey is not ended, can't calculate score")
|
||||
|
||||
bus_info = self.get_algorithm_class().get_bus_information(bus)
|
||||
# Score is the given score by the bus subtracted to the mid-score of the buses.
|
||||
s = sum(bus_info.scores[getattr(self.information, 'word' + str(i))]
|
||||
- self.word_mean(getattr(self.information, 'word' + str(i))) for i in range(1, 1 + NB_WORDS))
|
||||
- self.word_mean(getattr(self.information, 'word' + str(i))) for i in range(1, 1 + NB_WORDS)) / NB_WORDS
|
||||
s += sum(1 for q in WORDS['questions'] if getattr(self.information, q) == str(bus.pk))
|
||||
return s
|
||||
|
||||
@lru_cache()
|
||||
def scores_per_bus(self):
|
||||
return {bus: (self.score(bus), self.score_words(bus)) for bus in self.get_algorithm_class().get_buses()}
|
||||
return {bus: self.score(bus) for bus in self.get_algorithm_class().get_buses()}
|
||||
|
||||
@lru_cache()
|
||||
def ordered_buses(self):
|
||||
"""
|
||||
Force the choice of bus to be in the 3 preferred buses according to the words
|
||||
"""
|
||||
values = list(self.scores_per_bus().items())
|
||||
values.sort(key=lambda item: -item[1][1])
|
||||
values = values[:3]
|
||||
values.sort(key=lambda item: -item[1])
|
||||
return values
|
||||
|
||||
@classmethod
|
||||
@@ -438,7 +421,6 @@ class WEISurveyAlgorithm2025(WEISurveyAlgorithm):
|
||||
"""
|
||||
Gale-Shapley algorithm implementation.
|
||||
We modify it to allow buses to have multiple "weddings".
|
||||
We use lexigographical order on both scores
|
||||
"""
|
||||
surveys = list(self.get_survey_class()(r) for r in self.get_registrations()) # All surveys
|
||||
surveys = [s for s in surveys if s.is_complete()] # Don't consider invalid surveys
|
||||
@@ -499,7 +481,7 @@ class WEISurveyAlgorithm2025(WEISurveyAlgorithm):
|
||||
while free_surveys: # Some students are not affected
|
||||
survey = free_surveys[0]
|
||||
buses = survey.ordered_buses() # Preferences of the student
|
||||
for bus, current_scores in buses:
|
||||
for bus, current_score in buses:
|
||||
if self.get_bus_information(bus).has_free_seats(surveys, quotas):
|
||||
# Selected bus has free places. Put student in the bus
|
||||
survey.select_bus(bus)
|
||||
@@ -509,17 +491,17 @@ class WEISurveyAlgorithm2025(WEISurveyAlgorithm):
|
||||
else:
|
||||
# Current bus has not enough places. Remove the least preferred student from the bus if existing
|
||||
least_preferred_survey = None
|
||||
least_scores = (-1, -1)
|
||||
least_score = -1
|
||||
# Find the least student in the bus that has a lower score than the current student
|
||||
for survey2 in surveys:
|
||||
if not survey2.information.valid or survey2.information.get_selected_bus() != bus:
|
||||
continue
|
||||
scores2 = survey2.score(bus), survey2.score_words(bus)
|
||||
if current_scores <= scores2: # Ignore better students
|
||||
score2 = survey2.score(bus)
|
||||
if current_score <= score2: # Ignore better students
|
||||
continue
|
||||
if least_preferred_survey is None or scores2 < least_scores:
|
||||
if least_preferred_survey is None or score2 < least_score:
|
||||
least_preferred_survey = survey2
|
||||
least_scores = scores2
|
||||
least_score = score2
|
||||
|
||||
if least_preferred_survey is not None:
|
||||
# Remove the least student from the bus and put the current student in.
|
||||
|
@@ -143,7 +143,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
||||
{% endblocktrans %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="alert {% if registration.validation_status == 2 %}alert-danger{% else %}alert-success{% endif %}">
|
||||
<div class="alert {% if registration.user.note.balance < fee %}alert-danger{% else %}alert-success{% endif %}">
|
||||
<h5>{% trans "Required payments:" %}</h5>
|
||||
<ul>
|
||||
<li>{% blocktrans trimmed with amount=fee|pretty_money %}
|
||||
|
@@ -30,7 +30,7 @@ class TestWEIAlgorithm(TestCase):
|
||||
)
|
||||
|
||||
self.buses = []
|
||||
for i in range(8):
|
||||
for i in range(10):
|
||||
bus = Bus.objects.create(wei=self.wei, name=f"Bus {i}", size=10)
|
||||
self.buses.append(bus)
|
||||
information = WEIBusInformation2025(bus)
|
||||
@@ -74,7 +74,7 @@ class TestWEIAlgorithm(TestCase):
|
||||
Buses are full of first year people, ensure that they are happy
|
||||
"""
|
||||
# Add a lot of users
|
||||
for i in range(80):
|
||||
for i in range(95):
|
||||
user = User.objects.create(username=f"user{i}")
|
||||
registration = WEIRegistration.objects.create(
|
||||
user=user,
|
||||
@@ -90,7 +90,6 @@ class TestWEIAlgorithm(TestCase):
|
||||
information.step = len(WORDS['questions']) + 1
|
||||
information.save(registration)
|
||||
registration.save()
|
||||
survey = WEISurvey2025(registration)
|
||||
|
||||
# Run algorithm
|
||||
WEISurvey2025.get_algorithm_class()().run_algorithm()
|
||||
@@ -105,9 +104,8 @@ class TestWEIAlgorithm(TestCase):
|
||||
survey = WEISurvey2025(r)
|
||||
chosen_bus = survey.information.get_selected_bus()
|
||||
buses = survey.ordered_buses()
|
||||
self.assertIn(chosen_bus, [x[0] for x in buses])
|
||||
score = min(v for bus, (v, __) in buses if bus == chosen_bus)
|
||||
max_score = buses[0][1][0]
|
||||
score = min(v for bus, v in buses if bus == chosen_bus)
|
||||
max_score = buses[0][1]
|
||||
penalty += (max_score - score) ** 2
|
||||
|
||||
self.assertLessEqual(max_score - score, 1) # Always less than 25 % of tolerance
|
||||
|
@@ -1125,16 +1125,16 @@ class WEIValidateRegistrationView(ProtectQuerysetMixin, ProtectedCreateView):
|
||||
'credit': credit_amount,
|
||||
'needed': total_needed}
|
||||
)
|
||||
return self.form_invalid(form)
|
||||
return super().form_invalid(form)
|
||||
|
||||
if credit_amount:
|
||||
if not last_name:
|
||||
form.add_error('last_name', _("This field is required."))
|
||||
return self.form_invalid(form)
|
||||
return super().form_invalid(form)
|
||||
|
||||
if not first_name:
|
||||
form.add_error('first_name', _("This field is required."))
|
||||
return self.form_invalid(form)
|
||||
return super().form_invalid(form)
|
||||
|
||||
# Credit note before adding the membership
|
||||
SpecialTransaction.objects.create(
|
||||
@@ -1178,13 +1178,6 @@ class WEIValidateRegistrationView(ProtectQuerysetMixin, ProtectedCreateView):
|
||||
|
||||
return super().form_valid(form)
|
||||
|
||||
def form_invalid(self, form):
|
||||
registration = getattr(form.instance, "registration", None)
|
||||
if registration is not None:
|
||||
registration.deposit_check = False
|
||||
registration.save()
|
||||
return super().form_invalid(form)
|
||||
|
||||
def get_success_url(self):
|
||||
self.object.refresh_from_db()
|
||||
return reverse_lazy("wei:wei_registrations", kwargs={"pk": self.object.club.pk})
|
||||
|
@@ -3152,10 +3152,8 @@ msgid "Note transaction"
|
||||
msgstr "Transaction Note"
|
||||
|
||||
#: apps/wei/models.py:217
|
||||
#, fuzzy
|
||||
#| msgid "Credit type"
|
||||
msgid "deposit type"
|
||||
msgstr "Type de rechargement"
|
||||
msgstr "type de caution"
|
||||
|
||||
#: apps/wei/models.py:221 apps/wei/templates/wei/weimembership_form.html:64
|
||||
msgid "birth date"
|
||||
@@ -4095,14 +4093,6 @@ msgstr "La note est indisponible pour le moment"
|
||||
msgid "Thank you for your understanding -- The Respos Info of BDE"
|
||||
msgstr "Merci de votre compréhension -- Les Respos Info du BDE"
|
||||
|
||||
#: note_kfet/templates/base_search.html:15
|
||||
msgid "Search by attribute such as name..."
|
||||
msgstr "Chercher par un attribut tel que le nom..."
|
||||
|
||||
#: note_kfet/templates/base_search.html:23
|
||||
msgid "There is no results."
|
||||
msgstr "Il n'y a pas de résultat."
|
||||
|
||||
#: note_kfet/templates/cas/logged.html:8
|
||||
msgid ""
|
||||
"<h3>Log In Successful</h3>You have successfully logged into the Central "
|
||||
|
Reference in New Issue
Block a user