{% extends "base.html" %} {% load url from future %} {% load filters %} {% block title %}Profile{% endblock %} {% block content %}
Username {{ user_info.username }}
First Name {{ user_info.first_name }}
Last Name {{ user_info.last_name }}
Email Address {{ user_info.email }}
Last Login {{ user_info.last_login }}
Invalid Login Attempts {{ user_info.invalid_login_attempts }}
Failed Password Resets {{ user_info.password_reset.attempts }}
Date Joined {{ user_info.date_joined }}
Organization {{ user_info.organization }}
CRITs Role {{ user_info.role }}
{% for pref in preferences %} {% include "preferences_widget.html" %} {% endfor %}
{% for login in user_info.login_attempts %} {% endfor %}
User-Agent Accept Language Location Success Date
{{ login.user_agent }} {{ login.accept_language }} {{ login.remote_addr }} {{ login.success }} {{ login.date }}
{% if indicators %}

Recent Indicators

{% with indicator_list=indicators %} {% include 'indicators_listing_widget.html' %} {% endwith %}
{% endif %}
{% if emails %}

Recent Emails

{% with email_list=emails %} {% include 'email_listing_widget.html' %} {% endwith %}
{% endif %}
{% if samples %}

Recent Samples

{% with sample_list=samples %} {% include 'samples_listing_widget.html' %} {% endwith %}
{% endif %}
{% if subscriptions.Sample %}

Sample Subscriptions

{% for sample in subscriptions.Sample %} {% endfor %}
Filename MD5 Date Subscribed
{{ sample.filename }} {{ sample.md5 }} {{ sample.date }}
{% endif %} {% if subscriptions.PCAP %}

PCAP Subscriptions

{% for pcap in subscriptions.PCAP %} {% endfor %}
Filename MD5 Date Subscribed
{{ pcap.filename }} {{ pcap.md5 }} {{ pcap.date }}
{% endif %} {% if subscriptions.Email %}

Email Subscriptions

{% for email in subscriptions.Email %} {% endfor %}
ID From Sender Subject Date Subscribed
{{ email.id }} {{ email.from }} {{ email.sender }} {{ email.subject }} {{ email.date }}
{% endif %} {% if subscriptions.Indicator %}

Indicator Subscriptions

{% for indicator in subscriptions.Indicator %} {% endfor %}
Value Type Date Subscribed
{{ indicator.value }} {{ indicator.type }} {{ indicator.date }}
{% endif %} {% if subscriptions.Event %}

Event Subscriptions

{% for event in subscriptions.Event %} {% endfor %}
Title Description Date Subscribed
{{ event.title }} {{ event.description|truncatechars:100 }} {{ event.date }}
{% endif %} {% if subscriptions.Domain %}

Domain Subscriptions

{% for domain in subscriptions.Domain %} {% endfor %}
Domain Date Subscribed
{{ domain.domain }} {{ domain.date }}
{% endif %} {% if subscriptions.IP %}

IP Subscriptions

{% for ip in subscriptions.IP %} {% endfor %}
IP Date Subscribed
{{ ip.ip }} {{ ip.date }}
{% endif %} {% if subscriptions.Campaign %}

Campaign Subscriptions

{% for campaign in subscriptions.Campaign %} {% endfor %}
Campaign Date Subscribed
{{ campaign.name }} {{ campaign.date }}
{% endif %}
{% if user_sources %}

Sources for {{ username }}

{% for source in user_sources %} {% if source|is_in:subscriptions.Source %} {% else %} {% endif %} {% endfor %}
Source Name Subscribed
{{ source }}
{% endif %}

API Keys for {{ username }}

{% for key in user_info.api_keys %} {% endfor %}
Key Name Date Added View Key Revoke
{{ key.name }} {{ key.date }}

Notifications

{% for notification in notifications %} {% endfor %}
Link Notification Date Delete
{{ notification.obj_type }} View {{ notification.obj_type }} {{ notification.notification }} {{ notification.created }}
{% endblock %}