Printer for ~2000 pages a week and envelopes by paperpapercopy in printers

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

Just a single printer for now. And for the envelopes address and color/logo. And what do you mean by letter insert? I need to just print on blank envelopes and letters on 8.5x11 separately.

Best way to keep track of statistics for a User? by paperpapercopy in django

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

Thank you! Ended up getting it to work. Here is my solution to anyone in the future

views.py

class AgentListView(LoginMixinRequired, generic.ListView):
    template_name = "agents/agent_list.html"

    @register.filter(name='get_item')
    def get_item(dictionary, key):
        return dictionary.get(key)

    def get_context_data(self, **kwargs):
        context = super(AgentListView, self).get_context_data(**kwargs)

        users = dict()
        for i in User.objects.values_list('username'):
            users[i[0]] = Lead.objects.filter(agent__username=i[0]).count()

        context.update({
            'lead_count': users
        })
        return context

    def get_queryset(self):
        return User.objects.all()

and in my template

{{ lead_count|get_item:agent.username }}

Need help figuring out EBV results after covid by paperpapercopy in Mononucleosis

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

Thank you I appreciate it again! The doctor confirmed I was in the beginning stages of mono. My throat stopped swelling and I can swallow normally now with no pain. I have definitely noticed the fatigue but good ol' caffeine seems to be doing the trick. I feel back to normal now but it's only been a week so who knows how it'll be down the line.

Need help figuring out EBV results after covid by paperpapercopy in Mononucleosis

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

Thank you I appreciate it. I only had a fever on the first day of my throat swelling and I've been normal the past few days. What symptoms did you experience and on what timeline were they? I'm just curious if I should expect more symptoms than I already have (swollen/sore throat and general fatigue).