Ejemplo n.º 1
0
def delete_note(id):

    functions.delete_note_using_id(id)
    notes = functions.get_data_using_user_id(session['id'])
    tags = []
    if notes:
        for note in notes:
            tags_list = functions.get_tag_using_note_id(note[0])
            temp_list = []
            if tags_list:
                for tag in tags_list:
                    temp = functions.get_data_using_tag_id(tag)
                    if temp is not None:
                        temp_list.append(temp[0])
            tags.append(', '.join(temp_list))
    return render_template('profile.html', delete=True, tags=tags, username=session['username'], notes=notes)
Ejemplo n.º 2
0
def delete_note(id):
    '''
        App for viewing a specific note
    '''
    functions.delete_note_using_id(id)
    notes = functions.get_data_using_user_id(session['id'])
    tags = []
    if notes:
        for i in range(len(notes)):
            tags_list = functions.get_tag_using_note_id(notes[i][0])
            temp_list = []
            if tags_list:
                for j in range(len(tags_list)):
                    temp = functions.get_data_using_tag_id(tags_list[j])
                    if temp is not None:
                        temp_list.append(temp[0])
            tags.append(', '.join(temp_list))
    return render_template('profile.html', delete=True, tags=tags, username=session['username'], notes=notes)
Ejemplo n.º 3
0
def profile():
    if request.method == 'GET':
        notes = functions.get_data_using_user_id(session['id'])
        tags = []
        if notes:
            for note in notes:
                tags_list = functions.get_tag_using_note_id(note[0])
                temp_list = []
                if tags_list:
                    for tag in tags_list:
                        temp = functions.get_data_using_tag_id(tag)
                        if temp is not None:
                            temp_list.append(temp[0])
                tags.append(', '.join(temp_list))
        return render_template('profile.html',
                               username=session['username'],
                               notes=notes,
                               tags=tags)
Ejemplo n.º 4
0
def profile():
    '''
        App za korisnički profil, može se pristupiti samo nakon uspješne prijave
    '''
    if request.method == 'GET':
        notes = functions.get_data_using_user_id(session['id'])
        tags = []
        if notes:
            for note in notes:
                tags_list = functions.get_tag_using_note_id(note[0])
                temp_list = []
                if tags_list:
                    for tag in tags_list:
                        temp = functions.get_data_using_tag_id(tag)
                        if temp is not None:
                            temp_list.append(temp[0])
                tags.append(', '.join(temp_list))
        return render_template('profile.html',
                               username=session['username'],
                               notes=notes,
                               tags=tags)
Ejemplo n.º 5
0
def profile():
    '''
        App for user profile can only be accessed only after successful login
    '''
    if request.method == 'GET':
        notes = functions.get_data_using_user_id(session['id'])
        tags = []
        if notes:
            for i in range(len(notes)):
                tags_list = functions.get_tag_using_note_id(notes[i][0])
                temp_list = []
                if tags_list:
                    for j in range(len(tags_list)):
                        temp = functions.get_data_using_tag_id(tags_list[j])
                        if temp is not None:
                            temp_list.append(temp[0])
                tags.append(', '.join(temp_list))
        return render_template(
            'profile.html',
            username=session['username'],
            notes=notes,
            tags=tags
        )
Ejemplo n.º 6
0
def view_notes():
    '''
        App for user profile can only be accessed only after successful login
    '''
    if request.method == 'GET':
        notes = functions.get_data_using_user_id (session['id'])
        tags = []
        if notes:
            for note in notes:
                tags_list = functions.get_tag_using_note_id(note[0])
                temp_list = []
                if tags_list:
                    for tag in tags_list:
                        temp = functions.get_data_using_tag_id(tag)
                        if temp is not None:
                            temp_list.append(temp[0])
                tags.append(', '.join(temp_list))
        return render_template(
            'view_notes.html',
            username=session['username'],
            notes=notes,
            tags=tags
        )