* Add ID and track to the event overview
* Get rid of the timezones in the schedule, need to deal with that on output * Skip auth token verfiy on schedule updates * Make it possible to withdraw confirmed submissions * Show if people are not registerd
This commit is contained in:
parent
2b5e40bc96
commit
73013bd3e6
14 changed files with 96 additions and 48 deletions
|
|
@ -4,6 +4,16 @@ class Admin::PeopleController < ApplicationController
|
|||
|
||||
def index
|
||||
@people = Person.all
|
||||
mails = []
|
||||
@people.each do |p|
|
||||
if p.registrations.count < 1 and p.confirmed?
|
||||
mails << p.email
|
||||
end
|
||||
end
|
||||
respond_to do |format|
|
||||
format.html
|
||||
format.text { render :text => mails }
|
||||
end
|
||||
end
|
||||
|
||||
def create
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue