Skip to content

Commit

Permalink
fix(accounts): styles
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeejoee committed Nov 11, 2023
1 parent c83ce50 commit 80eaa44
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
36 changes: 18 additions & 18 deletions charts/templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ spec:
- containerPort: {{ .Values.web.port }}
protocol: TCP
name: web
readinessProbe:
initialDelaySeconds: 5
{{/* httpget doesn't work, timeouted */}}
exec:
command:
- wget
- 'http://localhost:{{ .Values.web.port }}/!/web'
- --header
- 'Host: {{ .Values.ingress.host | quote }}'
livenessProbe:
initialDelaySeconds: 5
periodSeconds: 20
exec:
command:
- wget
- 'http://localhost:{{ .Values.web.port }}/!/web'
- --header
- 'Host: {{ .Values.ingress.host | quote }}'
{{/* readinessProbe:*/}}
{{/* initialDelaySeconds: 5*/}}
{{/* */}}{{/* httpget doesn't work, timeouted */}}
{{/* exec:*/}}
{{/* command:*/}}
{{/* - wget*/}}
{{/* - 'http://localhost:{{ .Values.web.port }}/!/web'*/}}
{{/* - --header*/}}
{{/* - 'Host: {{ .Values.ingress.host | quote }}'*/}}
{{/* livenessProbe:*/}}
{{/* initialDelaySeconds: 5*/}}
{{/* periodSeconds: 20*/}}
{{/* exec:*/}}
{{/* command:*/}}
{{/* - wget*/}}
{{/* - 'http://localhost:{{ .Values.web.port }}/!/web'*/}}
{{/* - --header*/}}
{{/* - 'Host: {{ .Values.ingress.host | quote }}'*/}}
envFrom:
- secretRef:
name: {{ .Values.web.secretName }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1 class="card-title">{% trans "Social Accounts" %}</h1>
{% for base_account in form.accounts %}
<form method="POST"
action="{% url 'socialaccount_connections' %}"
class="w-1/2">
class="w-full mg:w-1/2">
{% csrf_token %}
<input type="hidden"
name="account"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@

{% get_matched_buddy_requests as request_matches %}
{% if not request_matches.exists %}
<div class="Dashboard__tile__value">So empty here :(</div>
<div class="Dashboard__tile__value dark:text-base-300">So empty here 😔</div>

{% if configuration.matching_policy_instance.can_member_match %}
<div class="Dashboard__tile__actions text-right">
<a href="{% url "buddy_system:matching-requests" %}"
class="btn btn-lg btn-outline">get your first buddy</a>
class="btn btn-lg btn-outline dark:text-base-300">get your first buddy</a>
</div>
{% else %}
<div class="Dashboard__tile__desc">Buddy system team is looking for the best match for you.</div>
Expand Down
2 changes: 1 addition & 1 deletion fiesta/apps/sections/models/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

FLAG_HELP_TEXT = _(
"Flag if field is needed to fill in user profile: "
"True=field is required, False=field is optional, None=field is not available"
"Yes=field is required, No=field is optional, Unknown=field is not available"
)


Expand Down

0 comments on commit 80eaa44

Please sign in to comment.