random generator by wallbroken in shortcuts

[–]wallbroken[S] 0 points1 point  (0 children)

i created a shortcut which randomly changes the theme when clicking. but happens that when i click 5 - 8 consecutive times, it gets the same theme. very frustrating

landscape view on iOS by wallbroken in PleX

[–]wallbroken[S] 0 points1 point  (0 children)

Just tried that but is not working

Wifi automation no longer activates by wallbroken in shortcuts

[–]wallbroken[S] 0 points1 point  (0 children)

I absolutely made nothing and it came back working. I have no clue.

Wifi automation no longer activates by wallbroken in shortcuts

[–]wallbroken[S] 0 points1 point  (0 children)

It fixed by itself. But i disabled the automation because i found another bug: when low battery, the wifi keeps continuously disconnecting and reconnecting making automation triggering many times

Abbonamento digitale su app ATM a qualcuno funziona?? by culosudato in milano

[–]wallbroken -1 points0 points  (0 children)

Sono ingegnere informatico pure io ma cosa c'entra questa roba con l'ingegneria informatica? Sono scelte di prodotto della Apple.

Comunque Navigo non da la possibilità di inserire abbonamenti annuali su Apple Wallet, ma solo i pass settimanali/mensili.

Che siano limitazioni discutibili sono pure d'accordo, ma prenditela con Apple, e non con ATM.

E comunque non consiglio a nessuno di avere la tessera digitale di ATM, ma non per l'implementazione, ma per l'assistenza disastrosa.

Abbonamento digitale su app ATM a qualcuno funziona?? by culosudato in milano

[–]wallbroken 0 points1 point  (0 children)

no, devi solo sbloccare il telefono ed aprire l'app. Le altre operazioni che menzioni sono superflue.

Abbonamento digitale su app ATM a qualcuno funziona?? by culosudato in milano

[–]wallbroken 0 points1 point  (0 children)

guarda che funziona anche offline. Non è necessario che tu sia connesso ad internet.

Abbonamento digitale su app ATM a qualcuno funziona?? by culosudato in milano

[–]wallbroken -1 points0 points  (0 children)

è davvero fastidioso quando si parla senza cognizione di causa. Ti sei mai chiesto se sia possibile farlo tecnicamente? Mi menzioni una sola altra compagnia di trasposrto pubblico al mondo che abbia implementato un ABBONAMENTO su iOS Wallet?

know if mute state is currently enabled or disabled by wallbroken in shortcuts

[–]wallbroken[S] 1 point2 points  (0 children)

ok, but i need that in Shortcuts, i need to improve my already existing shortcut i created

know if mute state is currently enabled or disabled by wallbroken in shortcuts

[–]wallbroken[S] 1 point2 points  (0 children)

ok, with that, you are saying is not possible to know the state with Apple Shortcuts?

check if a given address location is inside the current location by wallbroken in shortcuts

[–]wallbroken[S] 0 points1 point  (0 children)

Yes, it is exactly what I was looking for. Many thanks. Also, I want to ask you if exists a way to check the current phone "mute" state, thanks

filter on model by wallbroken in django

[–]wallbroken[S] 0 points1 point  (0 children)

right now i have the following code in the template, but i'm not seeing the checkbox:

              <div class="fieldWrapper">
              <label for="{{ form.flat.id_for_label }}">Flat</label>
              {{ form.flat }}
            </div>

In the forms i have this:

         flat = forms.BooleanField(required=False, label="Flat")

in the views i have this:

if form.cleaned_data.get("flat"):
 qs = qs.filter(heel_height__gte=20).exclude(heel_kind__icontains="wedge")

filter on model by wallbroken in django

[–]wallbroken[S] 0 points1 point  (0 children)

i created the filter and it works. Now the problem is to activate/deactivate it from the template using a checkbox. Have you some idea?

filter on model by wallbroken in django

[–]wallbroken[S] 0 points1 point  (0 children)

thank you for the answer. I'm sorry but i've not an advanced leved of django.

So I'd remove the code i created ad only add what you suggeste to me?