*** mjsir911 has joined #novawebdev | 08:40 | |
*** dsmall has joined #novawebdev | 09:42 | |
*** jelkner has joined #novawebdev | 11:05 | |
*** mr_german has joined #novawebdev | 11:31 | |
jelkner | Good morning, mr_german | 11:31 |
---|---|---|
mr_german | good morning jelkner | 11:31 |
mr_german | ;) | 11:31 |
jelkner | how are things going with ormd? | 11:31 |
jelkner | will we be ready to show on sunday? | 11:32 |
mr_german | really good, i hope add al the content today | 11:32 |
mr_german | yep | 11:32 |
jelkner | nice! | 11:32 |
mr_german | all* | 11:32 |
jelkner | ok, i'll let you get to it then | 11:32 |
jelkner | thanks!! | 11:32 |
mr_german | np ;) jelkner | 11:32 |
jelkner | let's talk again tomorrow | 11:32 |
mr_german | sure jelkner | 11:32 |
jelkner | we will be online from 10 to 5 pm | 11:32 |
jelkner | EST | 11:32 |
jelkner | let's check-in so I can see what you've got | 11:33 |
mr_german | jelkner, great, sounds good for me! | 11:33 |
jelkner | hasta mañana | 11:33 |
mr_german | hasta mañana o/ | 11:34 |
*** replaceafill has joined #novawebdev | 11:41 | |
dsmall | replaceafill, good morning | 11:42 |
replaceafill | good morning dsmall | 11:42 |
mr_german | hello, good morning replaceafill | 11:42 |
replaceafill | good morning mr_german | 11:43 |
replaceafill | mr_german, how's your progress? | 11:43 |
replaceafill | mr_german, anything to show yet? | 11:43 |
mr_german | replaceafill, no, i need add all the content | 11:43 |
replaceafill | mr_german, ok | 11:43 |
replaceafill | mr_german, remember we're meeting at 2 pm our time | 11:44 |
mr_german | ok | 11:44 |
replaceafill | mr_german, i'll let you go back to it | 11:44 |
mr_german | k | 11:44 |
mr_german | you'll create the forms | 11:44 |
mr_german | right | 11:44 |
mr_german | ? | 11:44 |
dsmall | replaceafill, I added some urls that let you sort by date | 11:44 |
dsmall | replaceafill, /blog/year/month/day/ | 11:44 |
replaceafill | mr_german, yes | 11:44 |
dsmall | replaceafill, each parameter is optional | 11:45 |
replaceafill | dsmall, excellent | 11:45 |
dsmall | replaceafill, im currently trying to make a dropdown menu that links to those urls | 11:45 |
replaceafill | dsmall, oh ok | 11:45 |
replaceafill | dsmall, any blockers on that? | 11:45 |
dsmall | replaceafill, whats a blocker? | 11:46 |
replaceafill | dsmall, something that blocks your progress | 11:46 |
replaceafill | dsmall, is there something blocking you there? | 11:46 |
dsmall | replaceafill, ohhh i see | 11:46 |
dsmall | replaceafill, nope, just have to do it | 11:46 |
replaceafill | dsmall, cool, nice progress | 11:47 |
replaceafill | dsmall, if you have enough time today you should start integrating your templates into the theme | 11:47 |
dsmall | replaceafill, I am having a little bit of trouble with getting a list of all the unique months from create_dt | 11:47 |
dsmall | replaceafill, totally | 11:47 |
replaceafill | dsmall, are you familiar with test driven development (TDD)? | 11:48 |
dsmall | replaceafill, no I am not | 11:48 |
replaceafill | dsmall, ok | 11:48 |
dsmall | replaceafill, I can look it up and become familiar with it | 11:48 |
replaceafill | dsmall, in this iteration we could go away with dirty implementations | 11:48 |
replaceafill | dsmall, once it seems to work we can add automated tests | 11:49 |
replaceafill | dsmall, so don't worry if the way you're solving the problems isn't optimal | 11:49 |
dsmall | replaceafill, thats good to hear | 11:49 |
replaceafill | dsmall, what's your problem specifically with the months? | 11:50 |
dsmall | replaceafill, I have this "month_list = Page.objects.values_list('create_dt')", but the problem is create_dt is a datetime field and I don't know how to reformat that into just the name of the month | 11:51 |
replaceafill | dsmall, oh i see | 11:51 |
replaceafill | dsmall, hold on | 11:51 |
dsmall | replaceafill, I also need to remove duplicates, but .distinct() doesn't work at this level | 11:51 |
dsmall | replaceafill, okay | 11:51 |
replaceafill | ACTION is looking for an example | 11:52 |
dsmall | replaceafill, there is a date filter that has been helpful, but I don't know a good way to use that in this situation | 11:52 |
replaceafill | dsmall, check this: https://bradmontgomery.net/blog/date-lookups-django/ | 11:54 |
dsmall | replaceafill, okay | 11:54 |
replaceafill | dsmall, couldn't find a link to the django docs | 11:54 |
replaceafill | dsmall, but there's a couple of examples of querying dates there | 11:55 |
replaceafill | Item.objects.filter( | 11:55 |
replaceafill | created__day=dt.day, | 11:55 |
replaceafill | created__month=dt.month, | 11:55 |
replaceafill | created__year=dt.year | 11:55 |
replaceafill | ) | 11:55 |
replaceafill | dsmall, underscore underscore allow you to do some advanced things with fields | 11:55 |
dsmall | replaceafill, right | 11:56 |
replaceafill | dsmall, like tags__in=['a', 'b', 'c'] | 11:56 |
replaceafill | dsmall, that's like the in operator in pythong | 11:56 |
dsmall | replaceafill, oh wow | 11:56 |
replaceafill | dsmall, and you can access attributes like somedate__month | 11:56 |
replaceafill | dsmall, and compare and filter | 11:56 |
replaceafill | dsmall, so you could blindly traverse the 12 months | 11:57 |
replaceafill | dsmall, and "populate?" the months that have data | 11:57 |
replaceafill | dsmall, that's a dirty approach | 11:57 |
dsmall | replaceafill, okay, I think I get it | 11:57 |
replaceafill | dsmall, but good enough for now | 11:57 |
dsmall | replaceafill, if I have any more questions I will let you know | 11:57 |
replaceafill | dsmall, you'll be hitting the database unnecessarily, but that can be optimized later | 11:58 |
replaceafill | dsmall, cool | 11:58 |
replaceafill | dsmall, good luck | 11:58 |
dsmall | replaceafill, thanks | 11:58 |
replaceafill | dsmall, finally, here it is: https://docs.djangoproject.com/en/1.8/topics/db/queries/#field-lookups | 12:00 |
mr_german | replaceafill, ready!, I'm going to start! | 12:02 |
replaceafill | mr_german, kk | 12:02 |
replaceafill | mr_german, the sooner you can show it to jelkner and lelkneralfaro for feedback, the better | 12:02 |
mr_german | ok | 12:03 |
jelkner | Good morning, replaceafill! | 12:09 |
replaceafill | jelkner, good morning! | 12:09 |
jelkner | mr_german and i talked about feedback tomorrow | 12:09 |
replaceafill | jelkner, oh cool | 12:10 |
jelkner | i'll be on irc between 10 am and 4:45 pm | 12:10 |
jelkner | so we are all set | 12:10 |
replaceafill | jelkner, great, thanks for letting me know | 12:10 |
jelkner | now we just need to leave him be so he can get ready ;-) | 12:10 |
replaceafill | jelkner, indeed | 12:10 |
replaceafill | jelkner, do you have some extra time tomorrow to talk about the threaded forums? | 12:12 |
dsmall | replaceafill, I almost have the dropdown menu, it took me some time to work out the code behind it | 13:45 |
replaceafill | dsmall, cool | 13:45 |
dsmall | replaceafill, I was going to leave a little early today if thats fine with you | 13:45 |
replaceafill | dsmall, sure, np | 13:45 |
replaceafill | dsmall, you've made good progress on this | 13:46 |
dsmall | replaceafill, I have everything on my repo if you want to check it out | 13:46 |
dsmall | replaceafill, just make sure to be on the dev branch | 13:46 |
dsmall | replaceafill, thanks | 13:46 |
replaceafill | dsmall, ah ok, will do in a couple of hours | 13:46 |
dsmall | replaceafill, alright, email me if you have any questions/concerns about it | 13:46 |
replaceafill | dsmall, on monday i think you had no idea what a tendenci page was :) | 13:46 |
replaceafill | dsmall, will do | 13:47 |
dsmall | replaceafill, that is correct :) | 13:47 |
replaceafill | dsmall, thanks for work on this, see you next week | 13:47 |
replaceafill | working* | 13:47 |
dsmall | replaceafill, no problem! See you next week | 13:48 |
mr_german | /me goes to take his lunch | 13:53 |
mr_german | ups | 13:53 |
mr_german | ACTION goes to take his lunch* | 13:53 |
*** zOnny has joined #novawebdev | 13:57 | |
zOnny | hello nrcerna | 13:58 |
nrcerna | Hi zOnny, Acabo de leer el correo de Paul Flint | 14:00 |
zOnny | nrcerna: can you do that ? | 14:00 |
nrcerna | De hecho estaba escribiendole, por que puedo hablar solo por chat en hangouts, ahorita mismo, o luego de las 8:30 VA | 14:01 |
zOnny | nrcerna: cool | 14:03 |
zOnny | nrcerna: I just want to make sure that you are going to understand Flint | 14:05 |
zOnny | nrcerna: He prefer use Hangouts | 14:06 |
nrcerna | Do you meant Hangouts call? zOnny | 14:07 |
nrcerna | Because I can't call zOnny | 14:08 |
zOnny | nrcerna: correct or you can send an email about using only email | 14:08 |
zOnny | nrcerna: puedes tu explicar eso a Flint ? | 14:12 |
*** mjsir911 has joined #novawebdev | 14:12 | |
nrcerna | Sure zOnny | 14:17 |
zOnny | nrcerna: I just want to make sure about your hangout | 14:19 |
zOnny | nrcerna: In case both agree on doing that | 14:20 |
nrcerna | En ese caso, podrías estar presente? zOnny | 14:20 |
zOnny | nrcerna: si | 14:22 |
zOnny | nrcerna: well, esperamos cual es respuesta de Flint | 14:24 |
nrcerna | Ok gracias zOnny, si hay que esperar | 14:26 |
nrcerna | zOnny: con lo de la imagen que me enviaste , ahí puede ir parte de lo que Louie escribió en el documento, osea sería de dividir la información entre el lugar que yo había hecho para 'what do you need' y ese lugar donde están los iconos | 14:41 |
nrcerna | Es reorganizar la información entre los dos espacios que te mencioné zOnny, al menos es una idea, no se que te parece? | 14:42 |
zOnny | nrcerna: :S | 14:46 |
zOnny | nrcerna: graphic design content ? | 14:47 |
nrcerna | I didn't understand, did you? zOnny | 14:48 |
zOnny | nrcerna: graphic design puedes tu enviar contenido ? | 14:49 |
nrcerna | We need to reorganize the info Louie gave us, between this two: 'what do you need' , renamed as Services by Louie, and the other part (the screenshot you shared me) | 14:51 |
nrcerna | I think we can use the same content | 14:51 |
nrcerna | Beacuse is kinda extensive | 14:52 |
nrcerna | zOnny | 14:52 |
nrcerna | Do you think is the right way, zOnny? | 14:53 |
zOnny | nrcerna: that is good question | 14:55 |
nrcerna | Keep going zOnny | 14:58 |
zOnny | nrcerna: the font-family : century gothic is not free :( | 15:07 |
replaceafill | ACTION goes to get lunch, bb in ~40 | 15:11 |
nrcerna | :O you should use Monserat or Roboto zOnny | 15:13 |
nrcerna | I think Franklin Gothic Book its free too zOnny | 15:16 |
nrcerna | I'm about to go out zOnny I'll be back late night as said Paul | 15:44 |
*** mjsir911 has joined #novawebdev | 15:45 | |
replaceafill | ACTION is back | 15:59 |
replaceafill | mr_german, you around? | 15:59 |
mr_german | replaceafill, yes | 16:00 |
replaceafill | mr_german, since you're meeting with jelkner tomorrow, i don't think it's necessary we meet today | 16:00 |
replaceafill | mr_german, just try to have as much as possible ready by then | 16:00 |
replaceafill | mr_german, i mean, as much content migrated as possible | 16:01 |
mr_german | replaceafill, well | 16:01 |
mr_german | https://ourrevolutionmd.novawebdevelopment.org/ | 16:01 |
mr_german | replaceafill, Im adding the "chapters" pages right now | 16:02 |
replaceafill | mr_german, cool | 16:02 |
replaceafill | mr_german, you should separate "chapter / candidate" in the rotator | 16:02 |
mr_german | replaceafill, if you have the time to work on the forms that would be good | 16:02 |
replaceafill | mr_german, having a single word makes wrapping impossible | 16:02 |
replaceafill | mr_german, i will | 16:03 |
mr_german | replaceafill, oh, ok | 16:03 |
mr_german | replaceafill, i've added a event | 16:03 |
replaceafill | mr_german, for now just add the links | 16:03 |
mr_german | just for testing | 16:03 |
mr_german | k | 16:03 |
replaceafill | mr_german, cool | 16:03 |
replaceafill | mr_german, to be honest the page looks pretty empty | 16:04 |
replaceafill | mr_german, and i don't get the splitting between events and upcoming events | 16:04 |
mr_german | replaceafill, mm, I can change it later | 16:06 |
replaceafill | mr_german, sure, it's just my two cents | 16:07 |
replaceafill | mr_german, but you, jelkner and ORMD are in charge | 16:07 |
mr_german | replaceafill, I'll try to fix that! | 16:07 |
replaceafill | mr_german, ok | 16:07 |
mr_german | replaceafill, but, your observations are always appreciated | 16:08 |
mr_german | :) | 16:08 |
replaceafill | :) | 16:08 |
replaceafill | ok working on the forms | 16:08 |
replaceafill | mr_german, google form alternative added and linked in the story | 16:15 |
replaceafill | mr_german, i'm going to delete the other stock forms | 16:15 |
replaceafill | mr_german, in case you get any errors | 16:15 |
mr_german | ok | 16:16 |
replaceafill | mr_german, you may need to get rid of the "Get Updates" box in the sidebar | 16:18 |
mr_german | replaceafill, just "Get Updates"? | 16:18 |
replaceafill | mr_german, and Recent News? | 16:19 |
replaceafill | mr_german, i mean, you're not using either in any other part, right? | 16:19 |
mr_german | replaceafill, for pages Im using "fullwidth" template | 16:19 |
replaceafill | mr_german, yeah, but check https://ourrevolutionmd.novawebdevelopment.org/pages/search | 16:20 |
replaceafill | mr_german, for example | 16:20 |
mr_german | replaceafill, deberia quitarla del todo o dejar solamente | 16:21 |
mr_german | "Site Search" | 16:21 |
mr_german | ? | 16:21 |
replaceafill | mr_german, Site Search puede ser util | 16:21 |
mr_german | entonces remuevo los otros 2 | 16:21 |
replaceafill | mr_german, ok | 16:21 |
replaceafill | mr_german, cuales son los enlaces que te apuntan a action network? | 16:35 |
replaceafill | mr_german, recién cambié el del botton Join us now! | 16:36 |
replaceafill | mr_german, pero recuerdo que hay otro | 16:36 |
mr_german | mmm | 16:36 |
replaceafill | volunteer | 16:37 |
mr_german | en el footer | 16:37 |
mr_german | esta "Register to Vote" | 16:37 |
mr_german | y "Volunteer" | 16:37 |
replaceafill | mr_german, ok | 16:37 |
replaceafill | mr_german, ok, creo que ya los actualicé todos | 16:41 |
replaceafill | mr_german, https://ourrevolutionmd.novawebdevelopment.org/memberships/applications/or-maryland-members/ | 16:41 |
replaceafill | mr_german, https://ourrevolutionmd.novawebdevelopment.org/forms/ormd-volunteer-your-chapter/ | 16:41 |
mr_german | bueno si le falta uno | 16:41 |
mr_german | yo lo agrego despues | 16:41 |
replaceafill | mr_german, ok | 16:41 |
replaceafill | mr_german, si necesitás algo más me avisas | 16:41 |
replaceafill | mr_german, viste mi correo del foro? | 16:42 |
mr_german | replaceafill, si, se mira genial | 16:42 |
replaceafill | :) | 16:42 |
replaceafill | ok, dale pues | 16:42 |
mr_german | replaceafill, en "calendar" que pongo ahi? | 16:47 |
replaceafill | mr_german, hace una pagina nueva | 16:48 |
replaceafill | mr_german, y en la pagina nueva pone los enlaces a los calendarios de google | 16:48 |
mr_german | pero los habiamos quitado de la lista | 16:48 |
replaceafill | mr_german, quitaste *los calendarios* | 16:49 |
mr_german | si | 16:49 |
replaceafill | mr_german, no los enlaces | 16:49 |
replaceafill | mr_german, wait | 16:50 |
replaceafill | mr_german, esta pagina http://ourrevolutionmd.com/calendar/ | 16:50 |
replaceafill | mr_german, era asi la ultima vez que la vimos? | 16:50 |
mr_german | no | 16:50 |
mr_german | eran | 16:50 |
mr_german | links | 16:50 |
replaceafill | mr_german, ok | 16:51 |
mr_german | replaceafill, have to leave, I'll continue at night | 16:53 |
replaceafill | mr_german, cool | 16:54 |
replaceafill | mr_german, don't worry about the calendar yet | 16:54 |
mr_german | replaceafill, ok | 16:54 |
replaceafill | mr_german, you can add events for that | 16:54 |
mr_german | replaceafill, cool | 16:54 |
replaceafill | o/ | 16:54 |
mr_german | replaceafill, later o/ | 16:54 |
*** mjsir911 has joined #novawebdev | 19:48 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!